aboutsummaryrefslogtreecommitdiffstats
path: root/src/syntax.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/syntax.c')
-rw-r--r--src/syntax.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/syntax.c b/src/syntax.c
index 31eb86faed8..e18db029309 100644
--- a/src/syntax.c
+++ b/src/syntax.c
@@ -20,8 +20,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
20 20
21#include <config.h> 21#include <config.h>
22 22
23#define SYNTAX_INLINE EXTERN_INLINE
24
25#include <sys/types.h> 23#include <sys/types.h>
26 24
27#include "lisp.h" 25#include "lisp.h"
@@ -31,13 +29,15 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
31#include "keymap.h" 29#include "keymap.h"
32#include "regex.h" 30#include "regex.h"
33 31
34/* Make syntax table lookup grant data in gl_state. */
35#define SYNTAX_ENTRY_VIA_PROPERTY
36
37#include "syntax.h" 32#include "syntax.h"
38#include "intervals.h" 33#include "intervals.h"
39#include "category.h" 34#include "category.h"
40 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
41/* Eight single-bit flags have the following meanings: 41/* Eight single-bit flags have the following meanings:
42 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.
43 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.