Browse code

Fix build issue with newer versions of Bison

Somewhere between bison versions 3.5 and 3.6.4, having multiple
characters in a single-quoted string went from a warning to an error.
This commit corrects that by changing a literal to string,

Andy Ragusa (aragusa) authored on 2020/07/22 03:49:29
Showing 1 changed files
... ...
@@ -233,7 +233,7 @@ rules
233 233
     | rules rule
234 234
     | rules import
235 235
     | rules error rule      /* on error skip until next rule..*/
236
-    | rules error 'include' /* .. or include statement */
236
+    | rules error "include" /* .. or include statement */
237 237
     ;
238 238
 
239 239