treewide: Replace <name>_cnt by n_<name>s and <name>_cap by allocated_<name>.
[pspp] / src / language / lexer / command-name.c
index 24443a0995b814c7d30e60c123b8924d14a7e5b8..eae0b43b39d3d89d059f417b6c754d4f38ced840 100644 (file)
@@ -132,7 +132,7 @@ command_match (struct substring command, struct substring string,
 
       // Try each possible command.
       command_matcher_init (&cm, string);
-      for (cmd = commands; cmd < &commands[command_cnt]; cmd++)
+      for (cmd = commands; cmd < &commands[n_commands]; cmd++)
         command_matcher_add (&cm, cmd->name, cmd);
 
       // Get the result.