summaryrefslogtreecommitdiff
path: root/2005/i/robert/src/config/parser.yy
diff options
context:
space:
mode:
Diffstat (limited to '2005/i/robert/src/config/parser.yy')
-rw-r--r--2005/i/robert/src/config/parser.yy6
1 files changed, 4 insertions, 2 deletions
diff --git a/2005/i/robert/src/config/parser.yy b/2005/i/robert/src/config/parser.yy
index fe1ca60..4bd744f 100644
--- a/2005/i/robert/src/config/parser.yy
+++ b/2005/i/robert/src/config/parser.yy
@@ -78,8 +78,8 @@ void yyerror (const char *);
%%
input:
- /* Nothing. */
- | input confitem '\n'
+ confitem
+ | input '\n' confitem
| input '\n'
;
@@ -130,3 +130,5 @@ yy_init_globals (yyscan_t yyscanner)
return yy_init_globals (yyscanner);
}
+/* vim:ft=yacc:
+*/