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
9ea306d1
Commit
9ea306d1
authored
Jul 12, 2004
by
Kim F. Storm
Browse files
(mark_object): Only look at Lisp_Misc_Save_Value if GC_MARK_STACK.
parent
f85409d3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
src/alloc.c
src/alloc.c
+2
-0
No files found.
src/alloc.c
View file @
9ea306d1
...
@@ -5033,6 +5033,7 @@ mark_object (arg)
...
@@ -5033,6 +5033,7 @@ mark_object (arg)
break
;
break
;
case
Lisp_Misc_Save_Value
:
case
Lisp_Misc_Save_Value
:
#if GC_MARK_STACK
{
{
register
struct
Lisp_Save_Value
*
ptr
=
XSAVE_VALUE
(
obj
);
register
struct
Lisp_Save_Value
*
ptr
=
XSAVE_VALUE
(
obj
);
/* If DOGC is set, POINTER is the address of a memory
/* If DOGC is set, POINTER is the address of a memory
...
@@ -5045,6 +5046,7 @@ mark_object (arg)
...
@@ -5045,6 +5046,7 @@ mark_object (arg)
mark_maybe_object
(
*
p
);
mark_maybe_object
(
*
p
);
}
}
}
}
#endif
break
;
break
;
case
Lisp_Misc_Overlay
:
case
Lisp_Misc_Overlay
:
...
...
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