From 2eb1d6a2a2bd29464f56567a9dc8d63fbfaa2ab2 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 17 Sep 1994 19:49:03 +0000 Subject: [PATCH] (Fforward_comment): Do increment from, when reaching single-char comment end going forward. --- src/syntax.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.39.5