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.h [emacs-unicode-2]


From: Kenichi Handa
Subject: [Emacs-diffs] Changes to emacs/src/character.h [emacs-unicode-2]
Date: Thu, 14 Oct 2004 22:16:54 -0400

Index: emacs/src/character.h
diff -c emacs/src/character.h:1.1.4.4 emacs/src/character.h:1.1.4.5
*** emacs/src/character.h:1.1.4.4       Mon Apr 19 07:09:26 2004
--- emacs/src/character.h       Fri Oct 15 02:09:31 2004
***************
*** 77,82 ****
--- 77,88 ----
  #define unibyte_char_to_multibyte(c)  \
    ((c) < 256 ? unibyte_to_multibyte_table[(c)] : (c))
  
+ /* Nth element is 1 iff unibyte char N can be mapped to a multibyte
+    char.  */
+ extern char unibyte_has_multibyte_table[256];
+ 
+ #define UNIBYTE_CHAR_HAS_MULTIBYTE_P(c) (unibyte_has_multibyte_table[(c)])
+ 
  /* If C is not ASCII, make it unibyte. */
  #define MAKE_CHAR_UNIBYTE(c)  \
    do {                                \




reply via email to

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