aboutsummaryrefslogtreecommitdiffstats
path: root/src/keymap.c
diff options
context:
space:
mode:
authorKenichi Handa2002-10-15 01:19:04 +0000
committerKenichi Handa2002-10-15 01:19:04 +0000
commitc3d1e503343a45e64b5f2926136a11775b308fbd (patch)
tree56c332f95b302b6f874f8c384b5fa1e15b118e35 /src/keymap.c
parent47e20ea44e8621361b5dc86db382fb1bd729d5bc (diff)
downloademacs-c3d1e503343a45e64b5f2926136a11775b308fbd.tar.gz
emacs-c3d1e503343a45e64b5f2926136a11775b308fbd.zip
(Ftext_char_description): Check C by ASCII_CHAR_P, not
by SINGLE_BYTE_CHAR_P.
Diffstat (limited to 'src/keymap.c')
-rw-r--r--src/keymap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keymap.c b/src/keymap.c
index 68c63c6d08b..e6bae09994e 100644
--- a/src/keymap.c
+++ b/src/keymap.c
@@ -2130,7 +2130,7 @@ Control characters turn into "^char", etc. */)
2130 CHECK_NUMBER (character); 2130 CHECK_NUMBER (character);
2131 2131
2132 c = XINT (character); 2132 c = XINT (character);
2133 if (!SINGLE_BYTE_CHAR_P (c)) 2133 if (!ASCII_CHAR_P (c))
2134 { 2134 {
2135 int len = CHAR_STRING (c, str); 2135 int len = CHAR_STRING (c, str);
2136 2136