X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fparse.y;h=de221f9f094fd6f13ce4e50c3f60566846632391;hb=3d6e0f941d36ff335ad13ecf83405a40775e4c04;hp=125f18038dc02bee22cf9d1f9929232e10421a14;hpb=cbbf90a718ecc6836ef7a77b9040aebb9da348b8;p=chaz%2Fopenbox diff --git a/openbox/parse.y b/openbox/parse.y index 125f1803..de221f9f 100644 --- a/openbox/parse.y +++ b/openbox/parse.y @@ -23,7 +23,7 @@ extern int yylex(); extern int yyparse(); void yyerror(char *err); -extern int yylineno; +extern int lineno; extern FILE *yyin; static char *path; @@ -56,14 +56,14 @@ void parse_set_section(char *section); sections: | sections '[' IDENTIFIER ']' { parse_set_section($3); } '\n' - { ++yylineno; } lines + { ++lineno; } lines ; lines: | lines tokens { t.type='\n'; t.data.character='\n'; parse_token(&t); } '\n' - { ++yylineno; } + { ++lineno; } | lines IDENTIFIER '=' listtoken { parse_assign($2, &t); } '\n' - { ++yylineno; } + { ++lineno; } ; tokens: @@ -115,8 +115,10 @@ listtoken: %% +int lineno; + void yyerror(char *err) { - g_message("%s:%d: %s", path, yylineno, err); + g_message("%s:%d: %s", path, lineno, err); } void parse_rc() @@ -134,7 +136,7 @@ void parse_rc() } } - yylineno = 1; + lineno = 1; yyparse();