+2005-05-27 Bruno Haible <bruno@clisp.org>
+
+ * write-po.c (wrap): Output \a and \v as an escape sequence, like
+ \b, \f, \r.
+ Suggested by Asgeir Frimannsson <asgeirf@redhat.com>.
+
2005-05-05 Bruno Haible <bruno@clisp.org>
* Makefile.am (msgfmt_SOURCES): Add hash-string.c.
first_line = true;
do
{
- /* The \a and \v escapes were added by the ANSI C Standard.
- Prior to the Standard, most compilers did not have them.
- Because we need the same program on all platforms we don't provide
- support for them here. Thus we only support \b\f\n\r\t. */
+ /* The usual escapes, as defined by the ANSI C Standard. */
# define is_escape(c) \
- ((c) == '\b' || (c) == '\f' || (c) == '\n' || (c) == '\r' || (c) == '\t')
+ ((c) == '\a' || (c) == '\b' || (c) == '\f' || (c) == '\n' \
+ || (c) == '\r' || (c) == '\t' || (c) == '\v')
const char *es;
const char *ep;
{
switch (c)
{
+ case '\a': c = 'a'; break;
case '\b': c = 'b'; break;
case '\f': c = 'f'; break;
case '\n': c = 'n'; break;
case '\r': c = 'r'; break;
case '\t': c = 't'; break;
+ case '\v': c = 'v'; break;
default: abort ();
}
*pp++ = '\\';