1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-30 08:09:04 +00:00

(Fforward_comment): Do increment from, when reaching

single-char comment end going forward.
This commit is contained in:
Richard M. Stallman 1994-09-17 19:49:03 +00:00
parent f015160841
commit 2eb1d6a2a2

View File

@ -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)