]> git.saurik.com Git - bison.git/blobdiff - src/scan-gram.l
NEWS: update.
[bison.git] / src / scan-gram.l
index 463d226379559feb47c4029b91640244a286f2fe..75023f4f6fac24117a4114d855ba4b7231371a73 100644 (file)
@@ -39,7 +39,6 @@
 #include <ctype.h>
 #include <mbswidth.h>
 #include <quote.h>
-#include <streq.h>
 
 #include "scan-gram.h"
 
@@ -875,7 +874,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 (!strcmp (token_end, "'\\''"))
     token_end = "\"'\"";
   complain_at (loc, _(msgid), token_end);
 }