]> git.sur5r.net Git - i3/i3/commitdiff
change the commands_parser prefix to 'command' for consistency
authorMichael Stapelberg <michael@stapelberg.de>
Mon, 8 Oct 2012 11:25:32 +0000 (13:25 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Mon, 8 Oct 2012 11:25:32 +0000 (13:25 +0200)
src/commands_parser.c
src/i3.mk

index bbba2c44eb5cbc72a69eb5e073266690b401a892..1720fd6f0418d84fced2026d992f8049bca8fc89 100644 (file)
@@ -46,7 +46,7 @@
  * input parser-specs/commands.spec.
  ******************************************************************************/
 
-#include "GENERATED_commands_enums.h"
+#include "GENERATED_command_enums.h"
 
 typedef struct token {
     char *name;
@@ -63,7 +63,7 @@ typedef struct tokenptr {
     int n;
 } cmdp_token_ptr;
 
-#include "GENERATED_commands_tokens.h"
+#include "GENERATED_command_tokens.h"
 
 /*******************************************************************************
  * The (small) stack where identified literals are stored during the parsing
@@ -182,7 +182,7 @@ static Match current_match;
 static struct CommandResult subcommand_output;
 static struct CommandResult command_output;
 
-#include "GENERATED_commands_call.h"
+#include "GENERATED_command_call.h"
 
 
 static void next_state(const cmdp_token *token) {
index fd4afdb7e1eeb0b8cabda52e3e840a09935fdb9b..d0ff1e88d64930d9e4e46e118ea684af7faf6d97 100644 (file)
--- a/src/i3.mk
+++ b/src/i3.mk
@@ -63,7 +63,7 @@ src/config_parser.o: src/config_parser.c $(i3_HEADERS_DEP) i3-config-parser.stam
 
 i3-command-parser.stamp: generate-command-parser.pl parser-specs/commands.spec
        echo "[i3] Generating command parser"
-       (cd include; ../generate-command-parser.pl --input=../parser-specs/commands.spec --prefix=commands)
+       (cd include; ../generate-command-parser.pl --input=../parser-specs/commands.spec --prefix=command)
        touch $@
 
 i3-config-parser.stamp: generate-command-parser.pl parser-specs/config.spec