summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorAdela Vais <adela.vais99@gmail.com>2021-01-07 13:39:43 +0200
committerAkim Demaille <akim.demaille@gmail.com>2021-01-07 18:51:48 +0100
commitc13b3c02d39edd4d46480b8ee065466d8720939f (patch)
treef37274699645126a7b3f31d5ae661ba2824524a1 /examples
parentf8594626580382f88f2767c55dfa42b6f8e8a799 (diff)
downloadbison-c13b3c02d39edd4d46480b8ee065466d8720939f.tar.gz
d: remove support for parse.error verbose
Without the history, D should not support this option. Before the removal, 'detailed' and 'verbose' options generated the same code. * data/skeletons/lalr1.d: Here. * doc/bison.texi: Adapt tests to use 'detailed' instead of 'verbose'. * tests/calc.at: Document it.
Diffstat (limited to 'examples')
-rw-r--r--examples/d/calc/calc.y2
-rw-r--r--examples/d/simple/calc.y2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/d/calc/calc.y b/examples/d/calc/calc.y
index 765ba382..d17ee8d6 100644
--- a/examples/d/calc/calc.y
+++ b/examples/d/calc/calc.y
@@ -20,7 +20,7 @@
%language "D"
%define api.parser.class {Calc}
-%define parse.error verbose
+%define parse.error detailed
%define parse.trace
%locations
diff --git a/examples/d/simple/calc.y b/examples/d/simple/calc.y
index 58f1d020..e302036b 100644
--- a/examples/d/simple/calc.y
+++ b/examples/d/simple/calc.y
@@ -20,7 +20,7 @@
%language "D"
%define api.parser.class {Calc}
-%define parse.error verbose
+%define parse.error detailed
%union {
int ival;