]> git.saurik.com Git - bison.git/commitdiff
maint: update gnulib.
authorAkim Demaille <demaille@gostai.com>
Fri, 9 Mar 2012 07:11:17 +0000 (08:11 +0100)
committerAkim Demaille <demaille@gostai.com>
Fri, 9 Mar 2012 07:28:31 +0000 (08:28 +0100)
* gnulib: update.
* src/scan-gram.l: Don't use the (former version of) STREQ.

gnulib
src/scan-gram.l

diff --git a/gnulib b/gnulib
index 50bb21eab7dfc87bbfcbc75f0232407110cdd296..4730c3e3692b344effb72d46b3ff92db0bdb797a 160000 (submodule)
--- a/gnulib
+++ b/gnulib
@@ -1 +1 @@
-Subproject commit 50bb21eab7dfc87bbfcbc75f0232407110cdd296
+Subproject commit 4730c3e3692b344effb72d46b3ff92db0bdb797a
index 463d226379559feb47c4029b91640244a286f2fe..75023f4f6fac24117a4114d855ba4b7231371a73 100644 (file)
@@ -39,7 +39,6 @@
 #include <ctype.h>
 #include <mbswidth.h>
 #include <quote.h>
 #include <ctype.h>
 #include <mbswidth.h>
 #include <quote.h>
-#include <streq.h>
 
 #include "scan-gram.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 "'".
   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);
 }
     token_end = "\"'\"";
   complain_at (loc, _(msgid), token_end);
 }