]> git.eshelyaron.com Git - emacs.git/commitdiff
(char_string): Use ASCII_CHAR_P instead of SINGLE_BYTE_CHAR_P.
authorKenichi Handa <handa@m17n.org>
Sun, 28 Sep 2003 23:54:27 +0000 (23:54 +0000)
committerKenichi Handa <handa@m17n.org>
Sun, 28 Sep 2003 23:54:27 +0000 (23:54 +0000)
src/character.c

index e4b7e362add3d831da5fee26c6370ec5bc9c148e..70b7c4760197a57f2c55e2d6e4c17b73f1a64bf8 100644 (file)
@@ -95,9 +95,9 @@ char_string (c, p)
 
   if (c & CHAR_MODIFIER_MASK)
     {
-      /* As a character not less than 256 can't have modifier bits, we
-        just ignore the bits.  */
-      if (SINGLE_BYTE_CHAR_P ((c & ~CHAR_MODIFIER_MASK)))
+      /* As an non-ASCII character can't have modifier bits, we just
+        ignore the bits.  */
+      if (ASCII_CHAR_P ((c & ~CHAR_MODIFIER_MASK)))
        {
          /* For Meta, Shift, and Control modifiers, we need special care.  */
          if (c & CHAR_META)