+2011-01-01 Bruno Haible <bruno@clisp.org>
+
+ Avoid use of hexadecimal escapes.
+ * tests/unigbrk/test-uc-is-grapheme-break.c (main): Use octal escapes
+ instead of hexadecimal escapes.
+
2011-01-01 Jim Meyering <meyering@redhat.com>
maint: new rule to update copyright year ranges
/* Grapheme cluster break function test.
- Copyright (C) 2010 Free Software Foundation, Inc.
+ Copyright (C) 2010-2011 Free Software Foundation, Inc.
This program is free software: you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License as published
ucs4_t next;
p += strspn (p, " \t\r\n");
- if (!strncmp (p, "\xc3\xb7" /* ÷ */, 2))
+ if (!strncmp (p, "\303\267" /* ÷ */, 2))
{
should_break = true;
p += 2;
}
- else if (!strncmp (p, "\xc3\x97" /* × */, 2))
+ else if (!strncmp (p, "\303\227" /* × */, 2))
{
should_break = false;
p += 2;