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 c765cc9a17b..a03202d386c 100644 --- a/src/syntax.c +++ b/src/syntax.c | |||
| @@ -480,10 +480,10 @@ parse_sexp_propertize (ptrdiff_t charpos) | |||
| 480 | safe_call1 (Qinternal__syntax_propertize, | 480 | safe_call1 (Qinternal__syntax_propertize, |
| 481 | make_fixnum (min (zv, 1 + charpos))); | 481 | make_fixnum (min (zv, 1 + charpos))); |
| 482 | if (modiffs != CHARS_MODIFF) | 482 | if (modiffs != CHARS_MODIFF) |
| 483 | error ("parse-sexp-propertize-function modified the buffer!"); | 483 | error ("internal--syntax-propertize modified the buffer!"); |
| 484 | if (syntax_propertize__done <= charpos | 484 | if (syntax_propertize__done <= charpos |
| 485 | && syntax_propertize__done < zv) | 485 | && syntax_propertize__done < zv) |
| 486 | error ("parse-sexp-propertize-function did not move" | 486 | error ("internal--syntax-propertize did not move" |
| 487 | " syntax-propertize--done"); | 487 | " syntax-propertize--done"); |
| 488 | SETUP_SYNTAX_TABLE (charpos, 1); | 488 | SETUP_SYNTAX_TABLE (charpos, 1); |
| 489 | } | 489 | } |