aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorRichard M. Stallman1993-07-14 16:36:25 +0000
committerRichard M. Stallman1993-07-14 16:36:25 +0000
commit12ae29ebfbb03d3856ca97ab0b555d58d11172b4 (patch)
tree53763091bb285736c970357872044a85be758f64 /src/alloc.c
parent2f88891677d36a9826395f727fe97d4117cc13e6 (diff)
downloademacs-12ae29ebfbb03d3856ca97ab0b555d58d11172b4.tar.gz
emacs-12ae29ebfbb03d3856ca97ab0b555d58d11172b4.zip
(mark_object) [DEBUG_MOLE]: Add abort at beginning.
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/alloc.c b/src/alloc.c
index e6edea42c95..07775391bfb 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -1460,6 +1460,11 @@ mark_object (objptr)
1460{ 1460{
1461 register Lisp_Object obj; 1461 register Lisp_Object obj;
1462 1462
1463#ifdef DEBUG_MOLE
1464 if (*(int *) ((char *)__builtin_frame_address (0) - 16) == 0)
1465 abort ();
1466#endif
1467
1463 obj = *objptr; 1468 obj = *objptr;
1464 XUNMARK (obj); 1469 XUNMARK (obj);
1465 1470