diff options
| author | Richard M. Stallman | 1994-02-01 18:24:12 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-02-01 18:24:12 +0000 |
| commit | 4feadcc08edcd2819829b005a6e61fec2113fc4c (patch) | |
| tree | aa86ce34e80ead7df20a6f812375f2696cc6c3c2 | |
| parent | 5f61736f6513125d647cd4ac2bdac331778a97f1 (diff) | |
| download | emacs-4feadcc08edcd2819829b005a6e61fec2113fc4c.tar.gz emacs-4feadcc08edcd2819829b005a6e61fec2113fc4c.zip | |
(SYNTAX_MATCH, SYNTAX): Fix non-GNUC definitions.
| -rw-r--r-- | src/syntax.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/syntax.h b/src/syntax.h index b3c92ca9979..71f52fc8ada 100644 --- a/src/syntax.h +++ b/src/syntax.h | |||
| @@ -64,7 +64,7 @@ enum syntaxcode | |||
| 64 | #define SYNTAX(c) \ | 64 | #define SYNTAX(c) \ |
| 65 | (RAW_SYNTAX (current_buffer->syntax_table, c) == Sinherit \ | 65 | (RAW_SYNTAX (current_buffer->syntax_table, c) == Sinherit \ |
| 66 | ? RAW_SYNTAX (Vstandard_syntax_table, c) \ | 66 | ? RAW_SYNTAX (Vstandard_syntax_table, c) \ |
| 67 | : RAW_SYNTAX (c)) | 67 | : RAW_SYNTAX (current_buffer->syntax_table, c)) |
| 68 | #endif | 68 | #endif |
| 69 | 69 | ||
| 70 | /* The next 8 bits of the number is a character, | 70 | /* The next 8 bits of the number is a character, |
| @@ -88,7 +88,7 @@ enum syntaxcode | |||
| 88 | #define SYNTAX_MATCH(c) \ | 88 | #define SYNTAX_MATCH(c) \ |
| 89 | (RAW_SYNTAX (current_buffer->syntax_table, c) == Sinherit \ | 89 | (RAW_SYNTAX (current_buffer->syntax_table, c) == Sinherit \ |
| 90 | ? RAW_SYNTAX_MATCH (Vstandard_syntax_table, c) \ | 90 | ? RAW_SYNTAX_MATCH (Vstandard_syntax_table, c) \ |
| 91 | : RAW_SYNTAX_MATCH (c)) | 91 | : RAW_SYNTAX_MATCH (current_buffer->syntax_table, c)) |
| 92 | #endif | 92 | #endif |
| 93 | 93 | ||
| 94 | /* Then there are six single-bit flags that have the following meanings: | 94 | /* Then there are six single-bit flags that have the following meanings: |