]> git.eshelyaron.com Git - emacs.git/commitdiff
(Ftext_char_description): Check C by ASCII_CHAR_P, not
authorKenichi Handa <handa@m17n.org>
Tue, 15 Oct 2002 01:19:04 +0000 (01:19 +0000)
committerKenichi Handa <handa@m17n.org>
Tue, 15 Oct 2002 01:19:04 +0000 (01:19 +0000)
by SINGLE_BYTE_CHAR_P.

src/keymap.c

index 68c63c6d08bf3fbe41d85205426c462f10bd63e1..e6bae09994e03231ad2c8958e72f5d8936cc765a 100644 (file)
@@ -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);