]> git.saurik.com Git - bison.git/blobdiff - src/scan-gram.l
maint: use STREQ/STRNEQ.
[bison.git] / src / scan-gram.l
index e2e08f9ab9dbf62253ee67e27d4c59c0d5840c52..fa200d64da107619362f0a4d8df23e2cf86ab4d1 100644 (file)
@@ -39,7 +39,6 @@
 #include <ctype.h>
 #include <mbswidth.h>
 #include <quote.h>
-#include <streq.h>
 
 #include <src/scan-gram.h>
 
@@ -968,7 +967,7 @@ unexpected_end (boundary start, char const *msgid, char const *token_end)
   loc.end = scanner_cursor;
   token_end = quote (token_end);
   // Instead of '\'', display "'".
-  if (STREQ (token_end, "'\\''", '\'', '\\', '\'', '\'', 0,0,0,0,0))
+  if (STREQ (token_end, "'\\''"))
     token_end = "\"'\"";
   complain_at (loc, _(msgid), token_end);
 }