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:
2e8b39d
)
(Fdecode_builtin_char): Comment out regularization code for ISO-IR GR
author
tomo
<tomo>
Thu, 12 Jul 2001 04:00:13 +0000
(
04:00
+0000)
committer
tomo
<tomo>
Thu, 12 Jul 2001 04:00:13 +0000
(
04:00
+0000)
representation.
src/mule-charset.c
patch
|
blob
|
history
diff --git
a/src/mule-charset.c
b/src/mule-charset.c
index
95ebb87
..
5b00fec
100644
(file)
--- a/
src/mule-charset.c
+++ b/
src/mule-charset.c
@@
-3165,8
+3165,10
@@
Make a builtin character from CHARSET and code-point CODE.
charset = Fget_charset (charset);
CHECK_INT (code);
c = XINT (code);
+#if 0
if (XCHARSET_GRAPHIC (charset) == 1)
c &= 0x7F7F7F7F;
+#endif
c = decode_builtin_char (charset, c);
return c ? make_char (c) : Fdecode_char (charset, code);
}