Mercurial > emacs
changeset 26870:9ecd0716cf8a
(SYNTAX_ENTRY_INT): Delete codes for a composite
character.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Wed, 15 Dec 1999 00:20:44 +0000 |
parents | cb8fbc50812f |
children | aaf45e665b14 |
files | src/syntax.h |
diffstat | 1 files changed, 6 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- 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. */