# HG changeset patch # User Kenichi Handa # Date 945217244 0 # Node ID 9ecd0716cf8a2e090b6736ea99798c7ccf2377f3 # Parent cb8fbc50812ffea6d07bdb69a21fd5629c8312dd (SYNTAX_ENTRY_INT): Delete codes for a composite character. diff -r cb8fbc50812f -r 9ecd0716cf8a src/syntax.h --- a/src/syntax.h Wed Dec 15 00:20:26 1999 +0000 +++ b/src/syntax.h Wed Dec 15 00:20:44 1999 +0000 @@ -105,14 +105,12 @@ # 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. */