summaryrefslogtreecommitdiff
path: root/iconvdata/euc-jp.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-07-07 06:41:18 +0000
committerUlrich Drepper <drepper@redhat.com>2000-07-07 06:41:18 +0000
commit2528edd3176df331320f366ff3dad88cb6d82533 (patch)
treed0537f9f5029e45bda16088ff7d206bddb5da129 /iconvdata/euc-jp.c
parent9bcadd4e212c475e0dedcd9ac2e371bec6aa7c01 (diff)
Update.
* iconvdata/euc-jp.c: Map characters in C1 area to itself. * iconvdata/euc-kr.c: Likewise.
Diffstat (limited to 'iconvdata/euc-jp.c')
-rw-r--r--iconvdata/euc-jp.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/iconvdata/euc-jp.c b/iconvdata/euc-jp.c
index c6a39b08ec..8d8429614d 100644
--- a/iconvdata/euc-jp.c
+++ b/iconvdata/euc-jp.c
@@ -45,10 +45,9 @@
{ \
uint32_t ch = *inptr; \
\
- if (ch <= 0x7f) \
+ if (ch < 0x8e || (ch >= 0x90 && ch <= 0x9f)) \
++inptr; \
- else if ((__builtin_expect (ch, 0xa1) <= 0xa0 && ch != 0x8e && ch != 0x8f)\
- || __builtin_expect (ch, 0xfe) > 0xfe) \
+ else if (ch == 0xff) \
{ \
/* This is illegal. */ \
if (! ignore_errors_p ()) \
@@ -168,8 +167,8 @@
{ \
uint32_t ch = get32 (inptr); \
\
- if (ch <= 0x7f) \
- /* It's plain ASCII. */ \
+ if (ch < 0x8e || (ch >= 0x90 && ch <= 0x9f)) \
+ /* It's plain ASCII or C1. */ \
*outptr++ = ch; \
else if (ch == 0xa5) \
/* YEN sign => backslash */ \