maint: update gnulib.

* gnulib: update.
	* src/scan-gram.l: Don't use the (former version of) STREQ.
This commit is contained in:
Akim Demaille
2012-03-09 08:11:17 +01:00
parent c14ceb55b9
commit f0f62c8c4d
2 changed files with 2 additions and 3 deletions

2
gnulib

Submodule gnulib updated: 50bb21eab7...4730c3e369

View 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);
}