diff options
author | Omar Polo <op@omarpolo.com> | 2024-06-06 18:00:23 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2024-06-06 18:00:23 +0000 |
commit | 3b2ee15a6b0c42c392ce6898afbf5f60b086af8e (patch) | |
tree | 940aa16160defad6a366ddde237c3bf96bffe409 /parse.y | |
parent | 235f5e70ee3c6fc3e78f9d526b7e99f4d6e502cf (diff) |
fix previous; was causing a shift/reduce conflict
Diffstat (limited to 'parse.y')
-rw-r--r-- | parse.y | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -147,8 +147,13 @@ typedef struct { %% +/* + * Allow + */ +grammar : nl conf | conf + ; + conf : /* empty */ - | conf nl | conf include nl | conf varset nl | conf option nl |