From 2924b2d94ab90848a9e19472230699736ff74691 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 17 Sep 1994 19:49:03 +0000 Subject: (Fforward_comment): Do increment from, when reaching single-char comment end going forward. --- src/syntax.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/syntax.c') diff --git a/src/syntax.c b/src/syntax.c index 9108f727cc4..1aba174f7bb 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -653,13 +653,13 @@ between them, return t; otherwise return nil.") return Qnil; } c = FETCH_CHAR (from); + from++; if (SYNTAX (c) == Sendcomment && SYNTAX_COMMENT_STYLE (c) == comstyle) /* we have encountered a comment end of the same style as the comment sequence which began this comment section */ break; - from++; if (from < stop && SYNTAX_COMEND_FIRST (c) && SYNTAX_COMEND_SECOND (FETCH_CHAR (from)) && SYNTAX_COMMENT_STYLE (c) == comstyle) -- cgit v1.2.1