From: Kenichi Handa Date: Sun, 28 Sep 2003 23:54:27 +0000 (+0000) Subject: (char_string): Use ASCII_CHAR_P instead of SINGLE_BYTE_CHAR_P. X-Git-Tag: emacs-pretest-23.0.90~8295^2~1810 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cc6dfd2abc67ec3452a11b62b0c2626a1ce5208e;p=emacs.git (char_string): Use ASCII_CHAR_P instead of SINGLE_BYTE_CHAR_P. --- diff --git a/src/character.c b/src/character.c index e4b7e362add..70b7c476019 100644 --- a/src/character.c +++ b/src/character.c @@ -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)