projects
/
chise
/
xemacs-chise.git.1
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b72096a
)
(DECODE_DEFINED_CHAR): Don't check `XCHARSET_GRAPHIC(ccs)'.
author
tomo
<tomo>
Wed, 13 Feb 2002 03:48:50 +0000
(
03:48
+0000)
committer
tomo
<tomo>
Wed, 13 Feb 2002 03:48:50 +0000
(
03:48
+0000)
src/char-ucs.h
patch
|
blob
|
history
diff --git
a/src/char-ucs.h
b/src/char-ucs.h
index
0fb5e06
..
dddb82e
100644
(file)
--- a/
src/char-ucs.h
+++ b/
src/char-ucs.h
@@
-685,10
+685,7
@@
DECODE_DEFINED_CHAR (Lisp_Object ccs, int code_point)
EQ (decoding_table, Qunbound) ||
NILP (decoding_table) )
{
- if (XCHARSET_GRAPHIC (ccs) == 1)
- return load_char_decoding_entry_maybe (ccs, code_point & 0x7F7F7F7F);
- else
- return load_char_decoding_entry_maybe (ccs, code_point);
+ return load_char_decoding_entry_maybe (ccs, code_point);
}
#endif
else