emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Stefan Monnier
Subject: [Emacs-diffs] Changes to emacs/src/bytecode.c
Date: Sun, 06 Jul 2003 15:30:10 -0400

Index: emacs/src/bytecode.c
diff -c emacs/src/bytecode.c:1.76 emacs/src/bytecode.c:1.77
*** emacs/src/bytecode.c:1.76   Sun May 25 13:40:52 2003
--- emacs/src/bytecode.c        Sun Jul  6 15:30:10 2003
***************
*** 292,310 ****
        for (obj = stack->bottom; obj <= stack->top; ++obj)
        if (!XMARKBIT (*obj))
          {
!           mark_object (obj);
            XMARK (*obj);
          }
  
        if (!XMARKBIT (stack->byte_string))
        {
!           mark_object (&stack->byte_string);
          XMARK (stack->byte_string);
        }
  
        if (!XMARKBIT (stack->constants))
        {
!         mark_object (&stack->constants);
          XMARK (stack->constants);
        }
      }
--- 292,310 ----
        for (obj = stack->bottom; obj <= stack->top; ++obj)
        if (!XMARKBIT (*obj))
          {
!           mark_object (*obj);
            XMARK (*obj);
          }
  
        if (!XMARKBIT (stack->byte_string))
        {
!           mark_object (stack->byte_string);
          XMARK (stack->byte_string);
        }
  
        if (!XMARKBIT (stack->constants))
        {
!         mark_object (stack->constants);
          XMARK (stack->constants);
        }
      }




reply via email to

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