aboutsummaryrefslogtreecommitdiffstats
path: root/src/syntax.c
diff options
context:
space:
mode:
authorPaul Eggert2011-10-25 21:49:46 -0700
committerPaul Eggert2011-10-25 21:49:46 -0700
commiteacd378d0b36f57de3efe3ff13949258407bd206 (patch)
treec0abd682f4b612892fb07e939a813f9137055640 /src/syntax.c
parentf0ecbca80a004824d74ca9bc8b77cc94b2489b34 (diff)
downloademacs-eacd378d0b36f57de3efe3ff13949258407bd206.tar.gz
emacs-eacd378d0b36f57de3efe3ff13949258407bd206.zip
* syntax.c (ST_COMMENT_STYLE, ST_STRING_STYLE): Revert this part of the change.
Diffstat (limited to 'src/syntax.c')
-rw-r--r--src/syntax.c4
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
100static Lisp_Object Qsyntax_table_p; 100static Lisp_Object Qsyntax_table_p;
101static Lisp_Object Qsyntax_table, Qscan_error; 101static Lisp_Object Qsyntax_table, Qscan_error;