summaryrefslogtreecommitdiff
path: root/src/syntax.c
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1993-06-10 10:28:58 +0000
committerJim Blandy <jimb@redhat.com>1993-06-10 10:28:58 +0000
commit28fb67584c4532df45271d27e787b64558cbb9c1 (patch)
tree5af9fb463536e4018f72a93d90e5050f5482f90c /src/syntax.c
parent3c940997a5f9e58549f851453b8f69aa027c9c33 (diff)
downloademacs-28fb67584c4532df45271d27e787b64558cbb9c1.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.c4
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