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: Richard M. Stallman
Subject: [Emacs-diffs] Changes to emacs/src/alloc.c
Date: Sat, 17 May 2003 08:40:32 -0400

Index: emacs/src/alloc.c
diff -c emacs/src/alloc.c:1.298 emacs/src/alloc.c:1.299
*** emacs/src/alloc.c:1.298     Wed Apr 30 08:04:39 2003
--- emacs/src/alloc.c   Sat May 17 08:40:32 2003
***************
*** 4215,4222 ****
    mark_byte_stack ();
    for (bind = specpdl; bind != specpdl_ptr; bind++)
      {
!       mark_object (&bind->symbol);
!       mark_object (&bind->old_value);
      }
    for (catch = catchlist; catch; catch = catch->next)
      {
--- 4215,4223 ----
    mark_byte_stack ();
    for (bind = specpdl; bind != specpdl_ptr; bind++)
      {
!       /* These casts avoid a warning for discarding `volatile'.  */
!       mark_object ((Lisp_Object *) &bind->symbol);
!       mark_object ((Lisp_Object *) &bind->old_value);
      }
    for (catch = catchlist; catch; catch = catch->next)
      {




reply via email to

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