summaryrefslogtreecommitdiffstats
path: root/parser.y
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-08-05 07:01:08 -0700
committerKaz Kylheku <kaz@kylheku.com>2014-08-05 07:01:08 -0700
commitcfef6286fa1beaf2072dfb3240e40539250dc527 (patch)
tree0e9125ee7ccb62fdda0ab2a6aace4791f5099b52 /parser.y
parent894c655f0214531ad7eff3d68d72792ae18d40cd (diff)
downloadtxr-cfef6286fa1beaf2072dfb3240e40539250dc527.tar.gz
txr-cfef6286fa1beaf2072dfb3240e40539250dc527.tar.bz2
txr-cfef6286fa1beaf2072dfb3240e40539250dc527.zip
* parser.y: Back port from Berkeley Yacc to GNU Bison.
We need a prototype of yylex that is in scope of the grammar, but YYSTYPE is not defined there. * parser.l: Bison 3 declares yyparse in y.tab.h, so we have to reorder some #includes.
Diffstat (limited to 'parser.y')
-rw-r--r--parser.y5
1 files changed, 5 insertions, 0 deletions
diff --git a/parser.y b/parser.y
index e1510091..65a7b55b 100644
--- a/parser.y
+++ b/parser.y
@@ -59,6 +59,11 @@ static val rlrec(parser_t *, val form, val line);
static wchar_t char_from_name(const wchar_t *name);
static val make_expr(parser_t *, val sym, val rest, val lineno);
+#if YYBISON
+union YYSTYPE;
+int yylex(union YYSTYPE *, void *scanner);
+#endif
+
#define rl(form, line) rlrec(parser, form, line)
#define mkexp(sym, rest, lineno) make_expr(parser, sym, rest, lineno)
#define symhlpr(lexeme, meta_allowed) sym_helper(scnr, lexeme, meta_allowed)