diff options
Diffstat (limited to 'src/syntax.c')
| -rw-r--r-- | src/syntax.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/syntax.c b/src/syntax.c index 4616ae296f8..dd2f56f2cfa 100644 --- a/src/syntax.c +++ b/src/syntax.c | |||
| @@ -175,7 +175,7 @@ static ptrdiff_t find_start_value; | |||
| 175 | static ptrdiff_t find_start_value_byte; | 175 | static ptrdiff_t find_start_value_byte; |
| 176 | static struct buffer *find_start_buffer; | 176 | static struct buffer *find_start_buffer; |
| 177 | static ptrdiff_t find_start_begv; | 177 | static ptrdiff_t find_start_begv; |
| 178 | static EMACS_INT find_start_modiff; | 178 | static modiff_count find_start_modiff; |
| 179 | 179 | ||
| 180 | 180 | ||
| 181 | static Lisp_Object skip_chars (bool, Lisp_Object, Lisp_Object, bool); | 181 | static Lisp_Object skip_chars (bool, Lisp_Object, Lisp_Object, bool); |
| @@ -489,7 +489,7 @@ parse_sexp_propertize (ptrdiff_t charpos) | |||
| 489 | if (syntax_propertize__done <= charpos | 489 | if (syntax_propertize__done <= charpos |
| 490 | && syntax_propertize__done < zv) | 490 | && syntax_propertize__done < zv) |
| 491 | { | 491 | { |
| 492 | EMACS_INT modiffs = CHARS_MODIFF; | 492 | modiff_count modiffs = CHARS_MODIFF; |
| 493 | safe_call1 (Qinternal__syntax_propertize, | 493 | safe_call1 (Qinternal__syntax_propertize, |
| 494 | make_fixnum (min (zv, 1 + charpos))); | 494 | make_fixnum (min (zv, 1 + charpos))); |
| 495 | if (modiffs != CHARS_MODIFF) | 495 | if (modiffs != CHARS_MODIFF) |
| @@ -608,7 +608,7 @@ find_defun_start (ptrdiff_t pos, ptrdiff_t pos_byte) | |||
| 608 | 608 | ||
| 609 | if (!NILP (Vcomment_use_syntax_ppss)) | 609 | if (!NILP (Vcomment_use_syntax_ppss)) |
| 610 | { | 610 | { |
| 611 | EMACS_INT modiffs = CHARS_MODIFF; | 611 | modiff_count modiffs = CHARS_MODIFF; |
| 612 | Lisp_Object ppss = call1 (Qsyntax_ppss, make_fixnum (pos)); | 612 | Lisp_Object ppss = call1 (Qsyntax_ppss, make_fixnum (pos)); |
| 613 | if (modiffs != CHARS_MODIFF) | 613 | if (modiffs != CHARS_MODIFF) |
| 614 | error ("syntax-ppss modified the buffer!"); | 614 | error ("syntax-ppss modified the buffer!"); |