mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
9063f9304c
- Add LICENSE - Use USES=localbase - Use PORTDATA - Sort PLIST Changes: http://git.savannah.gnu.org/cgit/bison.git/tree/NEWS Differential Revision: https://reviews.FreeBSD.org/D9073 PR: 215840 Exp-run by: antoine
26 lines
505 B
Plaintext
26 lines
505 B
Plaintext
--- monetdb5/extras/jaql/parser/jaql.y.orig 2013-01-14 21:06:06.000000000 +0800
|
|
+++ monetdb5/extras/jaql/parser/jaql.y 2017-01-09 04:57:50.801797000 +0800
|
|
@@ -81,12 +81,10 @@
|
|
|
|
|
|
%{
|
|
-#define YYLEX_PARAM j->scanner
|
|
-
|
|
int jaqllex(YYSTYPE* lvalp, void *scanner);
|
|
|
|
void
|
|
-jaqlerror(struct _jc* j, char const *msg)
|
|
+jaqlerror(struct _jc* j, char const *msg, char const *yy_)
|
|
{
|
|
if (j->err[0] == '\0') {
|
|
char around[32];
|
|
@@ -114,6 +112,8 @@
|
|
|
|
%}
|
|
|
|
+%parse-param {void *scanner}
|
|
+
|
|
%%
|
|
|
|
stmt: jaql ';'
|