diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-06-28 18:04:12 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-06-28 18:04:12 +0000 |
commit | 044ff6223a1787c61eca915338e8be61e1eb9b42 (patch) | |
tree | ed8ad47f1ce115cffc34e2136ce6c3c6f521cbd5 /iconvdata | |
parent | f7b74fc0fbe65f43bc5be0546099f7bd67212df8 (diff) | |
download | glibc-044ff6223a1787c61eca915338e8be61e1eb9b42.tar glibc-044ff6223a1787c61eca915338e8be61e1eb9b42.tar.gz glibc-044ff6223a1787c61eca915338e8be61e1eb9b42.tar.bz2 glibc-044ff6223a1787c61eca915338e8be61e1eb9b42.zip |
Update.
2000-06-28 Ulrich Drepper <drepper@redhat.com>
* iconvdata/jis0208.h: Remove redundant test.
Diffstat (limited to 'iconvdata')
-rw-r--r-- | iconvdata/jis0208.h | 4 |
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) |