emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Dave Love
Subject: [Emacs-diffs] Changes to emacs/src/eval.c
Date: Wed, 28 May 2003 07:42:11 -0400

Index: emacs/src/eval.c
diff -c emacs/src/eval.c:1.209 emacs/src/eval.c:1.210
*** emacs/src/eval.c:1.209      Fri May  9 10:01:12 2003
--- emacs/src/eval.c    Wed May 28 07:42:11 2003
***************
*** 3076,3082 ****
         the same entry again, and we copy the binding first
         in case more bindings are made during some of the code we run.  */
  
!       struct specbinding this_binding = *--specpdl_ptr;
  
        if (this_binding.func != 0)
        (*this_binding.func) (this_binding.old_value);
--- 3076,3083 ----
         the same entry again, and we copy the binding first
         in case more bindings are made during some of the code we run.  */
  
!       struct specbinding this_binding;
!       this_binding = *--specpdl_ptr;
  
        if (this_binding.func != 0)
        (*this_binding.func) (this_binding.old_value);




reply via email to

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