From: Kenichi Handa Date: Tue, 15 Oct 2002 01:19:04 +0000 (+0000) Subject: (Ftext_char_description): Check C by ASCII_CHAR_P, not X-Git-Tag: emacs-pretest-23.0.90~8295^2~1864^2~241 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c3d1e503343a45e64b5f2926136a11775b308fbd;p=emacs.git (Ftext_char_description): Check C by ASCII_CHAR_P, not by SINGLE_BYTE_CHAR_P. --- 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. */) CHECK_NUMBER (character); c = XINT (character); - if (!SINGLE_BYTE_CHAR_P (c)) + if (!ASCII_CHAR_P (c)) { int len = CHAR_STRING (c, str);