emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/alloc.c


From: Andreas Schwab
Subject: [Emacs-diffs] Changes to emacs/src/alloc.c
Date: Mon, 26 May 2003 18:03:17 -0400

Index: emacs/src/alloc.c
diff -c emacs/src/alloc.c:1.300 emacs/src/alloc.c:1.301
*** emacs/src/alloc.c:1.300     Sun May 25 13:40:03 2003
--- emacs/src/alloc.c   Mon May 26 18:03:17 2003
***************
*** 4311,4319 ****
  
  #if (GC_MARK_STACK == GC_USE_GCPROS_AS_BEFORE \
       || GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES)
!   for (tail = gcprolist; tail; tail = tail->next)
!     for (i = 0; i < tail->nvars; i++)
!       XUNMARK (tail->var[i]);
  #endif
  
    unmark_byte_stack ();
--- 4311,4323 ----
  
  #if (GC_MARK_STACK == GC_USE_GCPROS_AS_BEFORE \
       || GC_MARK_STACK == GC_USE_GCPROS_CHECK_ZOMBIES)
!   {
!     register struct gcpro *tail;
! 
!     for (tail = gcprolist; tail; tail = tail->next)
!       for (i = 0; i < tail->nvars; i++)
!       XUNMARK (tail->var[i]);
!   }
  #endif
  
    unmark_byte_stack ();




reply via email to

[Prev in Thread] Current Thread [Next in Thread]