]> git.saurik.com Git - bison.git/blobdiff - src/ielr.c
%define lr.type: make values lowercase IDs.
[bison.git] / src / ielr.c
index cdab6b88163db4827eef0210f3ac63cc9225078b..dfe981a53c31e6ebacd94c1bec9dd71f3ab30c87 100644 (file)
@@ -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);