summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--src/ChangeLog6
-rw-r--r--src/charset.c2
3 files changed, 12 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 85e460e7950..916aa93bf2e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-08-26 Kenichi Handa <handa@etl.go.jp>
+
+ * configure.in <alpha*-dec-osf*>: Move "NON_GNU_CPP='cpp'" before
+ "case "${canonical}" in".
+
2000-08-25 Kenichi Handa <handa@etl.go.jp>
* 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 <handa@etl.go.jp>
+
+ * 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 <monnier@cs.yale.edu>
* 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;