diff options
Diffstat (limited to 'src/syntax.c')
| -rw-r--r-- | src/syntax.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/syntax.c b/src/syntax.c index 3785bf45515..e18db029309 100644 --- a/src/syntax.c +++ b/src/syntax.c | |||
| @@ -29,13 +29,15 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 29 | #include "keymap.h" | 29 | #include "keymap.h" |
| 30 | #include "regex.h" | 30 | #include "regex.h" |
| 31 | 31 | ||
| 32 | /* Make syntax table lookup grant data in gl_state. */ | ||
| 33 | #define SYNTAX_ENTRY_VIA_PROPERTY | ||
| 34 | |||
| 35 | #include "syntax.h" | 32 | #include "syntax.h" |
| 36 | #include "intervals.h" | 33 | #include "intervals.h" |
| 37 | #include "category.h" | 34 | #include "category.h" |
| 38 | 35 | ||
| 36 | /* Make syntax table lookup grant data in gl_state. */ | ||
| 37 | #define SYNTAX(c) syntax_property (c, 1) | ||
| 38 | #define SYNTAX_ENTRY(c) syntax_property_entry (c, 1) | ||
| 39 | #define SYNTAX_WITH_FLAGS(c) syntax_property_with_flags (c, 1) | ||
| 40 | |||
| 39 | /* Eight single-bit flags have the following meanings: | 41 | /* Eight single-bit flags have the following meanings: |
| 40 | 1. This character is the first of a two-character comment-start sequence. | 42 | 1. This character is the first of a two-character comment-start sequence. |
| 41 | 2. This character is the second of a two-character comment-start sequence. | 43 | 2. This character is the second of a two-character comment-start sequence. |