aboutsummaryrefslogtreecommitdiffstats
path: root/src/syntax.c
diff options
context:
space:
mode:
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 57606f314d6..a8b6a58a89b 100644
--- a/src/syntax.c
+++ b/src/syntax.c
@@ -293,7 +293,7 @@ char_quoted (charpos, bytepos)
293 293
294 DEC_BOTH (charpos, bytepos); 294 DEC_BOTH (charpos, bytepos);
295 295
296 while (bytepos >= beg) 296 while (charpos >= beg)
297 { 297 {
298 int c; 298 int c;
299 299
@@ -674,7 +674,7 @@ back_comment (from, from_byte, stop, comnested, comstyle, charpos_ptr, bytepos_p
674 { 674 {
675 from = comstart_pos; 675 from = comstart_pos;
676 from_byte = comstart_byte; 676 from_byte = comstart_byte;
677 /* Globals are correct now. */ 677 UPDATE_SYNTAX_TABLE_FORWARD (from - 1);
678 } 678 }
679 else 679 else
680 { 680 {