summaryrefslogtreecommitdiffstats
path: root/parser.y
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-08-14 06:27:33 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-08-14 06:27:33 -0700
commitfdb54c85577859e26525463c2e21801cd9b2377c (patch)
tree9f219b7f56e613f48d56f3c45f28a23584fb1d60 /parser.y
parent9952353de4a6bdfd27727a00d53ae8958038c72d (diff)
downloadtxr-fdb54c85577859e26525463c2e21801cd9b2377c.tar.gz
txr-fdb54c85577859e26525463c2e21801cd9b2377c.tar.bz2
txr-fdb54c85577859e26525463c2e21801cd9b2377c.zip
Remove unwanted yyparse declaration from y.tab.h.
* Makefile (y.tab.c): Putting in an ugly workaround for an obnoxious new behavior introduced in Bison 3.x, which breaks our build on platforms that have a newer Bison. After generating y.tab.h, we remove the unwanted declaration with sed. * parser.y (yyparse): Declare, since y.tab.h doesn't any more, and the newer Bison's parse skeletons expect it.
Diffstat (limited to 'parser.y')
-rw-r--r--parser.y1
1 files changed, 1 insertions, 0 deletions
diff --git a/parser.y b/parser.y
index 4cda5a34..d0ab1f59 100644
--- a/parser.y
+++ b/parser.y
@@ -65,6 +65,7 @@ static void misplaced_consing_dot_check(scanner_t *scanner, val term_atom_cons);
#if YYBISON
union YYSTYPE;
int yylex(union YYSTYPE *, yyscan_t scanner);
+int yyparse(scanner_t *, parser_t *);
#endif
#define rl(form, line) rlrec(parser, form, line)