Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
6ce974d4
Commit
6ce974d4
authored
Aug 26, 2000
by
Kenichi Handa
Browse files
*** empty log message ***
parent
0e235b7e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
1 deletion
+12
-1
ChangeLog
ChangeLog
+5
-0
src/ChangeLog
src/ChangeLog
+6
-0
src/charset.c
src/charset.c
+1
-1
No files found.
ChangeLog
View file @
6ce974d4
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.
...
...
src/ChangeLog
View file @
6ce974d4
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.
...
...
src/charset.c
View file @
6ce974d4
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment