mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-19 01:10:57 -08:00
(mark_object): Add debugging code to check for ptr clobbered.
This commit is contained in:
parent
78c7997f4d
commit
6b5fd105ce
1 changed files with 4 additions and 0 deletions
|
|
@ -1623,7 +1623,11 @@ mark_object (objptr)
|
|||
XUNMARK (obj);
|
||||
goto loop;
|
||||
}
|
||||
if (ptr == 0)
|
||||
abort ();
|
||||
mark_object (&ptr->car);
|
||||
if (ptr == 0)
|
||||
abort ();
|
||||
objptr = &ptr->cdr;
|
||||
obj = ptr->cdr;
|
||||
goto loop;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue