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
1efc2bb9
Commit
1efc2bb9
authored
Oct 03, 2000
by
Eli Zaretskii
Browse files
(Fgarbage_collect): Prevent compiler warning for a call
to `mark_object'.
parent
858f7cb4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
src/ChangeLog
src/ChangeLog
+5
-0
src/alloc.c
src/alloc.c
+3
-1
No files found.
src/ChangeLog
View file @
1efc2bb9
2000-10-03 Eli Zaretskii <eliz@is.elta.co.il>
* alloc.c (Fgarbage_collect): Prevent compiler warning for a call
to `mark_object'.
2000-10-02 Stefan Monnier <monnier@cs.yale.edu>
* syntax.c (forw_comment): Match nestedness of ender/starter.
...
...
src/alloc.c
View file @
1efc2bb9
...
...
@@ -3600,7 +3600,9 @@ Garbage collection happens automatically if you cons more than\n\
for
(
i
=
0
;
i
<
tail
->
nvars
;
i
++
)
if
(
!
XMARKBIT
(
tail
->
var
[
i
]))
{
mark_object
(
&
tail
->
var
[
i
]);
/* Explicit casting prevents compiler warning about
discarding the `volatile' qualifier. */
mark_object
((
Lisp_Object
*
)
&
tail
->
var
[
i
]);
XMARK
(
tail
->
var
[
i
]);
}
#endif
...
...
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