aboutsummaryrefslogtreecommitdiff
path: root/src/grecs-gram.y
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2020-06-28 08:44:16 +0300
committerSergey Poznyakoff <gray@gnu.org>2020-06-28 08:44:16 +0300
commiteb98370ae03aa778d0a69df83f6f4a5cecff0b38 (patch)
treedac4ea49252fe62631cf30f5ef72d3abbdf4270b /src/grecs-gram.y
parent893d875a4065acb757fef55876c391b1dd070041 (diff)
downloadgrecs-eb98370ae03aa778d0a69df83f6f4a5cecff0b38.tar.gz
grecs-eb98370ae03aa778d0a69df83f6f4a5cecff0b38.tar.bz2
Use %define parse.error verbose in parsers, instead of the deprecated %error-verbose
Diffstat (limited to 'src/grecs-gram.y')
-rw-r--r--src/grecs-gram.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/grecs-gram.y b/src/grecs-gram.y
index 05ed2f5..4139587 100644
--- a/src/grecs-gram.y
+++ b/src/grecs-gram.y
@@ -28,13 +28,13 @@
int yylex(void);
int yyerror(char const *s);
static struct grecs_node *parse_tree;
%}
-%error-verbose
+%define parse.error verbose
%locations
%union {
char *string;
grecs_value_t svalue, *pvalue;
struct grecs_list *list;

Return to:

Send suggestions and report system problems to the System administrator.