emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/character.c [emacs-unicode-2]


From: Kenichi Handa
Subject: [Emacs-diffs] Changes to emacs/src/character.c [emacs-unicode-2]
Date: Sun, 28 Sep 2003 19:54:27 -0400

Index: emacs/src/character.c
diff -c emacs/src/character.c:1.1.4.2 emacs/src/character.c:1.1.4.3
*** emacs/src/character.c:1.1.4.2       Wed Sep 17 09:51:40 2003
--- emacs/src/character.c       Sun Sep 28 19:54:27 2003
***************
*** 95,103 ****
  
    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)))
        {
          /* For Meta, Shift, and Control modifiers, we need special care.  */
          if (c & CHAR_META)
--- 95,103 ----
  
    if (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)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]