summaryrefslogtreecommitdiff
path: root/iconvdata/jis0208.h
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-06-28 18:04:12 +0000
committerUlrich Drepper <drepper@redhat.com>2000-06-28 18:04:12 +0000
commit044ff6223a1787c61eca915338e8be61e1eb9b42 (patch)
treeed8ad47f1ce115cffc34e2136ce6c3c6f521cbd5 /iconvdata/jis0208.h
parentf7b74fc0fbe65f43bc5be0546099f7bd67212df8 (diff)
Update.
2000-06-28 Ulrich Drepper <drepper@redhat.com> * iconvdata/jis0208.h: Remove redundant test.
Diffstat (limited to 'iconvdata/jis0208.h')
-rw-r--r--iconvdata/jis0208.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/iconvdata/jis0208.h b/iconvdata/jis0208.h
index df8eb0ddd6..f05888f941 100644
--- a/iconvdata/jis0208.h
+++ b/iconvdata/jis0208.h
@@ -1,5 +1,5 @@
/* Access functions for JISX0208 conversion.
- Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc.
+ Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
@@ -49,7 +49,7 @@ jisx0208_to_ucs4 (const unsigned char **s, size_t avail, unsigned char offset)
unsigned char ch2;
int idx;
- if (ch < offset || (ch - offset) <= 0x20 || (ch - offset) > 0xea)
+ if (ch < offset || (ch - offset) <= 0x20)
return __UNKNOWN_10646_CHAR;
if (avail < 2)