]> git.sur5r.net Git - i3/i3/commitdiff
change the config parser to use default_orientation instead of new_container_orientation
authorMichael Stapelberg <michael@stapelberg.de>
Thu, 17 Mar 2011 16:55:53 +0000 (17:55 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Thu, 17 Mar 2011 16:55:53 +0000 (17:55 +0100)
It’s a shorter and probably more meaningful description as it is not
immediately clear what a container exactly is when first installing i3.

src/cfgparse.l
src/cfgparse.y

index 4776527b18df145fb98f679677f3216f9834e120..cc0dd320b2e110b6d9b5e7d37727d22a3c622ccb 100644 (file)
@@ -92,7 +92,7 @@ set[^\n]*                       { return TOKCOMMENT; }
 ipc-socket                      { BEGIN(BIND_AWS_COND); return TOKIPCSOCKET; }
 ipc_socket                      { BEGIN(BIND_AWS_COND); return TOKIPCSOCKET; }
 restart_state                   { BEGIN(BIND_AWS_COND); return TOKRESTARTSTATE; }
-new_container_orientation       { return TOK_ORIENTATION; }
+default_orientation             { return TOK_ORIENTATION; }
 horizontal                      { return TOK_HORIZ; }
 vertical                        { return TOK_VERT; }
 auto                            { return TOK_AUTO; }
index 50058680f2924a45a571eab57b8b21462c9f71c7..68678b801dde3eb21b1b5cf1ef753572bb7b99d8 100644 (file)
@@ -224,7 +224,7 @@ void parse_file(const char *f) {
 %token TOKCOLOR
 %token TOKARROW "→"
 %token TOKMODE "mode"
-%token TOK_ORIENTATION "new_container_orientation"
+%token TOK_ORIENTATION "default_orientation"
 %token TOK_HORIZ "horizontal"
 %token TOK_VERT "vertical"
 %token TOK_AUTO "auto"