aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 978174360b2..539539c49cd 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -1699,9 +1699,10 @@ Lisp_Object *last_marked[LAST_MARKED_SIZE];
1699int last_marked_index; 1699int last_marked_index;
1700 1700
1701static void 1701static void
1702mark_object (objptr) 1702mark_object (argptr)
1703 Lisp_Object *objptr; 1703 Lisp_Object *argptr;
1704{ 1704{
1705 Lisp_Object *objptr = argptr;
1705 register Lisp_Object obj; 1706 register Lisp_Object obj;
1706 1707
1707 loop: 1708 loop: