+2007-05-27 Bruno Haible <bruno@clisp.org>
+
+ Avoid link error; u16_mbtouc_aux is no longer a public API.
+ * x-java.c (string_buffer_append): Use u16_mbtouc instead of
+ u16_mbtouc_aux.
+ * x-python.c (mixed_string_buffer_append): Likewise.
+
2007-05-13 Bruno Haible <bruno@clisp.org>
* write-java.c (mkdir): Remove definition. Now done by gnulib.
utf16buf[0] = bp->utf16_surr;
utf16buf[1] = UTF16_VALUE (c);
- if (u16_mbtouc_aux (&uc, utf16buf, 2) != 2)
+ if (u16_mbtouc (&uc, utf16buf, 2) != 2)
abort ();
string_buffer_append_unicode (bp, uc);
utf16buf[0] = bp->utf16_surr;
utf16buf[1] = UNICODE_VALUE (c);
- if (u16_mbtouc_aux (&uc, utf16buf, 2) != 2)
+ if (u16_mbtouc (&uc, utf16buf, 2) != 2)
abort ();
mixed_string_buffer_append_unicode (bp, uc);