diff options
Diffstat (limited to 'src/syntax.c')
| -rw-r--r-- | src/syntax.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/syntax.c b/src/syntax.c index c76ffd95bf3..7108016f99c 100644 --- a/src/syntax.c +++ b/src/syntax.c | |||
| @@ -94,8 +94,8 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 94 | string-ender-char to distinguish comments/strings started by | 94 | string-ender-char to distinguish comments/strings started by |
| 95 | comment_fence and string_fence codes. */ | 95 | comment_fence and string_fence codes. */ |
| 96 | 96 | ||
| 97 | #define ST_COMMENT_STYLE (SYNTAX_FLAGS_COMMENT_STYLE (~0, ~0) + 1) | 97 | #define ST_COMMENT_STYLE (256 + 1) |
| 98 | #define ST_STRING_STYLE (MAX_CHAR + 1) | 98 | #define ST_STRING_STYLE (256 + 2) |
| 99 | 99 | ||
| 100 | static Lisp_Object Qsyntax_table_p; | 100 | static Lisp_Object Qsyntax_table_p; |
| 101 | static Lisp_Object Qsyntax_table, Qscan_error; | 101 | static Lisp_Object Qsyntax_table, Qscan_error; |