projects
/
chise
/
xemacs-chise.git-
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
605eda9
)
(Fdecode_char): Fixed.
author
tomo
<tomo>
Mon, 23 Jul 2001 08:15:50 +0000
(08:15 +0000)
committer
tomo
<tomo>
Mon, 23 Jul 2001 08:15:50 +0000
(08:15 +0000)
src/mule-charset.c
patch
|
blob
|
history
diff --git
a/src/mule-charset.c
b/src/mule-charset.c
index
43e1e0f
..
832911a
100644
(file)
--- a/
src/mule-charset.c
+++ b/
src/mule-charset.c
@@
-3163,7
+3163,7
@@
Make a character from CHARSET and code-point CODE.
if (XCHARSET_GRAPHIC (charset) == 1)
c &= 0x7F7F7F7F;
c = DECODE_CHAR (charset, c);
- return c ? make_char (c) : Qnil;
+ return c >= 0 ? make_char (c) : Qnil;
}
DEFUN ("decode-builtin-char", Fdecode_builtin_char, 2, 2, 0, /*