Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
407865ff
Commit
407865ff
authored
Jun 10, 1993
by
Jim Blandy
Browse files
* syntax.c (scan_lists, Fforward_comment): Call scan_sexps_forward
with the proper number of arguments.
parent
91d10fa8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/syntax.c
src/syntax.c
+2
-2
No files found.
src/syntax.c
View file @
407865ff
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment