mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-25 06:50:46 -08:00
(SYNTAX_MATCH, SYNTAX): Fix non-GNUC definitions.
This commit is contained in:
parent
5f61736f65
commit
4feadcc08e
1 changed files with 2 additions and 2 deletions
|
|
@ -64,7 +64,7 @@ enum syntaxcode
|
|||
#define SYNTAX(c) \
|
||||
(RAW_SYNTAX (current_buffer->syntax_table, c) == Sinherit \
|
||||
? RAW_SYNTAX (Vstandard_syntax_table, c) \
|
||||
: RAW_SYNTAX (c))
|
||||
: RAW_SYNTAX (current_buffer->syntax_table, c))
|
||||
#endif
|
||||
|
||||
/* The next 8 bits of the number is a character,
|
||||
|
|
@ -88,7 +88,7 @@ enum syntaxcode
|
|||
#define SYNTAX_MATCH(c) \
|
||||
(RAW_SYNTAX (current_buffer->syntax_table, c) == Sinherit \
|
||||
? RAW_SYNTAX_MATCH (Vstandard_syntax_table, c) \
|
||||
: RAW_SYNTAX_MATCH (c))
|
||||
: RAW_SYNTAX_MATCH (current_buffer->syntax_table, c))
|
||||
#endif
|
||||
|
||||
/* Then there are six single-bit flags that have the following meanings:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue