# HG changeset patch # User Jim Blandy # Date 739708138 0 # Node ID 87815c142cb20033f0bde811829a84540224a3ce # Parent c7aadfb5513826f539c5cd0eb1a59e70bd9575cd * syntax.c (scan_lists, Fforward_comment): Call scan_sexps_forward with the proper number of arguments. diff -r c7aadfb55138 -r 87815c142cb2 src/syntax.c --- 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