aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorRichard M. Stallman1995-11-15 17:42:44 +0000
committerRichard M. Stallman1995-11-15 17:42:44 +0000
commit436c581148833e54c3532d50b7770c94cc70d443 (patch)
treed7825c2801aadaa8eca63ba13098ef78eaddecfd /src/alloc.c
parent325cbd32fccaeef634962ba45734161dcd06dedc (diff)
downloademacs-436c581148833e54c3532d50b7770c94cc70d443.tar.gz
emacs-436c581148833e54c3532d50b7770c94cc70d443.zip
(mark_object): Don't overwrite original argument value.
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: