From 6ce974d452ae5f7fb17adfab4f912d33cb47eab8 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Sat, 26 Aug 2000 01:08:44 +0000 Subject: [PATCH] *** empty log message *** --- ChangeLog | 5 +++++ src/ChangeLog | 6 ++++++ src/charset.c | 2 +- 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 85e460e7950..916aa93bf2e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2000-08-26 Kenichi Handa + + * configure.in : Move "NON_GNU_CPP='cpp'" before + "case "${canonical}" in". + 2000-08-25 Kenichi Handa * leim-Makefile.in: Rename skkdic to ja-dic throughout the file. diff --git a/src/ChangeLog b/src/ChangeLog index 263d7a4f15e..632256ce2cd 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,9 @@ +2000-08-26 Kenichi Handa + + * charset.c (char_to_string): Check the character validity. + (char_valid_p): If C is not less than MAX_CHAR, be sure to return + 0. + 2000-08-25 Stefan Monnier * regex.c (PUSH_FAILURE_COUNT): New macro. diff --git a/src/charset.c b/src/charset.c index f350572a9d2..76dde15f7ab 100644 --- a/src/charset.c +++ b/src/charset.c @@ -221,7 +221,7 @@ char_to_string (c, str) *p++ = c + 0x20; } } - else if (CHAR_VALID_P (c)) + else if (CHAR_VALID_P (c, 0)) { int charset, c1, c2; -- 2.39.2