From 3b2ee15a6b0c42c392ce6898afbf5f60b086af8e Mon Sep 17 00:00:00 2001 From: Omar Polo Date: Thu, 6 Jun 2024 18:00:23 +0000 Subject: [PATCH] fix previous; was causing a shift/reduce conflict --- parse.y | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/parse.y b/parse.y index cdb4e530..5c04b254 100644 --- a/parse.y +++ b/parse.y @@ -147,8 +147,13 @@ typedef struct { %% +/* + * Allow + */ +grammar : nl conf | conf + ; + conf : /* empty */ - | conf nl | conf include nl | conf varset nl | conf option nl