diff options
author | Jim Blandy <jimb@redhat.com> | 1993-06-10 10:28:58 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1993-06-10 10:28:58 +0000 |
commit | 407865ffc91a5fc1f6fcf7f6ecf5d80fa367a208 (patch) | |
tree | 8c950afc8df4c3d96ddba8c94c1c09699a8f6b99 /src/syntax.c | |
parent | 91d10fa88d33cd14beaaefd470b9debd24e38639 (diff) | |
download | emacs-407865ffc91a5fc1f6fcf7f6ecf5d80fa367a208.tar.gz |
* syntax.c (scan_lists, Fforward_comment): Call scan_sexps_forward
with the proper number of arguments.
Diffstat (limited to 'src/syntax.c')
-rw-r--r-- | src/syntax.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/syntax.c b/src/syntax.c index db60b8f09f5..4386ea2db0c 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -804,7 +804,7 @@ between them, return t; otherwise return nil.") 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 @@ scan_lists (from, count, depth, sexpflag) 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 |