From c13b3c02d39edd4d46480b8ee065466d8720939f Mon Sep 17 00:00:00 2001 From: Adela Vais Date: Thu, 7 Jan 2021 13:39:43 +0200 Subject: 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. --- examples/d/calc/calc.y | 2 +- examples/d/simple/calc.y | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'examples') 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; -- cgit v1.2.1