diff options
| author | Eli Zaretskii | 2013-09-26 10:37:16 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2013-09-26 10:37:16 +0300 |
| commit | b87c4ff2817e71ca71b028792200b1e069a95e04 (patch) | |
| tree | bfe00c0655fa02078a9ab2c633ea06d90c4a2064 /src/syntax.c | |
| parent | bbc108377873aa6ed7cf21c731770103096eea39 (diff) | |
| parent | ba355de014b75ed104da4777f909db70d62f2357 (diff) | |
| download | emacs-b87c4ff2817e71ca71b028792200b1e069a95e04.tar.gz emacs-b87c4ff2817e71ca71b028792200b1e069a95e04.zip | |
Merge from trunk.
Diffstat (limited to 'src/syntax.c')
| -rw-r--r-- | src/syntax.c | 10 |
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. |