From 07c7a0552ab5031edb6af78197b5584a61d055eb Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 6 Sep 1999 07:55:04 +0000 Subject: Update. 1999-09-06 Ulrich Drepper * iconvdata/iso-2022-jp.c: When translating to ISO-2022-JP* write escape sequences out even if the character itself does not fit into the buffer. * iconvdata/jis0201.h (ucs4_to_jisx0201): Correct mapping for U005C. --- iconvdata/jis0201.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'iconvdata/jis0201.h') diff --git a/iconvdata/jis0201.h b/iconvdata/jis0201.h index 5a555372ae..005f73fc9c 100644 --- a/iconvdata/jis0201.h +++ b/iconvdata/jis0201.h @@ -46,7 +46,7 @@ ucs4_to_jisx0201 (uint32_t wch, char *s) ch = '\x5c'; else if (wch == 0x203e) ch = '\x7e'; - else if (wch < 0x7e) + else if (wch < 0x7e && wch != 0x5c) ch = wch; else if (wch >= 0xff61 && wch <= 0xff9f) ch = wch - 0xfec0; -- cgit v1.2.3