Mercurial > emacs
diff src/syntax.c @ 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 | 507f64624555 |
| children | 2be7629a9e17 |
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
