Mercurial > emacs
changeset 3609:87815c142cb2
* syntax.c (scan_lists, Fforward_comment): Call scan_sexps_forward
with the proper number of arguments.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Thu, 10 Jun 1993 10:28:58 +0000 |
parents | c7aadfb55138 |
children | b0c94b723e6a |
files | src/syntax.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/syntax.c Thu Jun 10 09:32:18 1993 +0000 +++ b/src/syntax.c Thu Jun 10 10:28:58 1993 +0000 @@ -804,7 +804,7 @@ last passed a comment starter. */ struct lisp_parse_state state; scan_sexps_forward (&state, find_defun_start (comment_end), - comment_end - 1, -10000, 0, Qnil); + comment_end - 1, -10000, 0, Qnil, 1); if (state.incomment) from = state.comstart; else @@ -1191,7 +1191,7 @@ last passed a comment starter. */ struct lisp_parse_state state; scan_sexps_forward (&state, find_defun_start (comment_end), - comment_end - 1, -10000, 0, Qnil); + comment_end - 1, -10000, 0, Qnil, 1); if (state.incomment) from = state.comstart; else