From 293637bb93a707d5c7c1304071757586592f0278 Mon Sep 17 00:00:00 2001 From: tedu Date: Thu, 10 Nov 2016 16:00:40 +0000 Subject: [PATCH] missing semicolon at end of rule. yacc doesn't seem to mind, though. from Edakawa --- parse.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parse.y b/parse.y index e89fb1c..0863d75 100644 --- a/parse.y +++ b/parse.y @@ -166,7 +166,7 @@ envlist: /* empty */ { errx(1, "can't allocate envlist"); $$.envlist[nenv] = $2.str; $$.envlist[nenv + 1] = NULL; - } + } ; ident: TSTRING { -- 2.39.2