mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-16 15:53:03 +00:00
%define lr.type: make values lowercase IDs.
That is, "LALR" => "lalr", "IELR" => "ielr", and
"canonical LR" => "canonical-lr".
* NEWS (2.5): Update documentation.
* doc/bison.texinfo (Decl Summary): Likewise.
* src/ielr.c (ielr): Use new values.
* src/ielr.h (ielr): Update documentation.
* src/reader.c (prepare_percent_define_front_end_variables): Use
and validate new values.
* tests/existing.at (AT_TEST_EXISTING_GRAMMAR): Update test
grammars.
* tests/reduce.at (AT_TEST_LR_TYPE): Likewise.
(cherry picked from commit 6ba9640406)
This commit is contained in:
@@ -1095,11 +1095,11 @@ ielr (void)
|
||||
/* Examine user options. */
|
||||
{
|
||||
char *type = muscle_percent_define_get ("lr.type");
|
||||
if (0 == strcmp (type, "LALR"))
|
||||
if (0 == strcmp (type, "lalr"))
|
||||
lr_type = LR_TYPE__LALR;
|
||||
else if (0 == strcmp (type, "IELR"))
|
||||
else if (0 == strcmp (type, "ielr"))
|
||||
lr_type = LR_TYPE__IELR;
|
||||
else if (0 == strcmp (type, "canonical LR"))
|
||||
else if (0 == strcmp (type, "canonical-lr"))
|
||||
lr_type = LR_TYPE__CANONICAL_LR;
|
||||
else
|
||||
aver (false);
|
||||
|
||||
Reference in New Issue
Block a user