mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-11 16:08:13 +00:00
*** empty log message ***
This commit is contained in:
parent
0e235b7e3a
commit
6ce974d452
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user