aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/alloc.c b/src/alloc.c
index c6fb2319d1e..9b84a7e51f8 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -2006,6 +2006,9 @@ mark_object (argptr)
2006 mark_object (&ptr->plist); 2006 mark_object (&ptr->plist);
2007 XSETTYPE (*(Lisp_Object *) &ptr->name, Lisp_String); 2007 XSETTYPE (*(Lisp_Object *) &ptr->name, Lisp_String);
2008 mark_object (&ptr->name); 2008 mark_object (&ptr->name);
2009 /* Note that we do not mark the obarray of the symbol.
2010 It is safe not to do so because nothing accesses that
2011 slot except to check whether it is nil. */
2009 ptr = ptr->next; 2012 ptr = ptr->next;
2010 if (ptr) 2013 if (ptr)
2011 { 2014 {