# HG changeset patch # User Kenichi Handa # Date 1064793267 0 # Node ID c719d9f420d1ef4ab0526259a11464b330b0e386 # Parent a02c064cebec99a8e0e3a559c8dd1c48ca4c1c42 (char_string): Use ASCII_CHAR_P instead of SINGLE_BYTE_CHAR_P. diff -r a02c064cebec -r c719d9f420d1 src/character.c --- a/src/character.c Fri Sep 26 17:48:40 2003 +0000 +++ b/src/character.c Sun Sep 28 23:54:27 2003 +0000 @@ -95,9 +95,9 @@ 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)