]> git.eshelyaron.com Git - emacs.git/commitdiff
(SYNTAX_ENTRY_INT): Delete codes for a composite
authorKenichi Handa <handa@m17n.org>
Wed, 15 Dec 1999 00:20:44 +0000 (00:20 +0000)
committerKenichi Handa <handa@m17n.org>
Wed, 15 Dec 1999 00:20:44 +0000 (00:20 +0000)
character.

src/syntax.h

index c2c3a0896d0d3daaff0e213cbfa788e07a2c739f..5036c4a2a168500e6615e8432a39df07dee5731f 100644 (file)
@@ -105,14 +105,12 @@ extern Lisp_Object syntax_parent_lookup P_ ((Lisp_Object, int));
 #  define CURRENT_SYNTAX_TABLE current_buffer->syntax_table
 #endif
 
-#define SYNTAX_ENTRY_INT(c)                                    \
-  ((c) < CHAR_TABLE_SINGLE_BYTE_SLOTS                          \
-   ? SYNTAX_ENTRY_FOLLOW_PARENT (CURRENT_SYNTAX_TABLE,         \
-                                (unsigned char) (c))           \
-   : Faref (CURRENT_SYNTAX_TABLE,                              \
-           make_number (COMPOSITE_CHAR_P (c)                   \
-                        ? cmpchar_component ((c), 0, 1)        \
-                        : (c))))
+#define SYNTAX_ENTRY_INT(c)                            \
+  ((c) < CHAR_TABLE_SINGLE_BYTE_SLOTS                  \
+   ? SYNTAX_ENTRY_FOLLOW_PARENT (CURRENT_SYNTAX_TABLE, \
+                                (unsigned char) (c))   \
+   : Faref (CURRENT_SYNTAX_TABLE,                      \
+           make_number (c)))
 
 /* Extract the information from the entry for character C
    in the current syntax table.  */