From 044ff6223a1787c61eca915338e8be61e1eb9b42 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 28 Jun 2000 18:04:12 +0000 Subject: Update. 2000-06-28 Ulrich Drepper * iconvdata/jis0208.h: Remove redundant test. --- iconvdata/jis0208.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'iconvdata/jis0208.h') 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 , 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) -- cgit v1.2.3