]> git.saurik.com Git - bison.git/blobdiff - src/ielr.c
Merge remote-tracking branch 'origin/maint'
[bison.git] / src / ielr.c
index cde2baaf292813ed82c5fc6b7a310666ddfcb423..39e9cb6695c858eeb2ec8cbe6f3a585c8792cf3b 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 (STREQ (type, "lalr"))
       lr_type = LR_TYPE__LALR;
-    else if (0 == strcmp (type, "ielr"))
+    else if (STREQ (type, "ielr"))
       lr_type = LR_TYPE__IELR;
-    else if (0 == strcmp (type, "canonical-lr"))
+    else if (STREQ (type, "canonical-lr"))
       lr_type = LR_TYPE__CANONICAL_LR;
     else
       aver (false);