emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/subr.el


From: Richard M. Stallman
Subject: [Emacs-diffs] Changes to emacs/lisp/subr.el
Date: Sun, 16 Dec 2001 12:41:20 -0500

Index: emacs/lisp/subr.el
diff -c emacs/lisp/subr.el:1.278 emacs/lisp/subr.el:1.279
*** emacs/lisp/subr.el:1.278    Wed Dec 12 04:26:43 2001
--- emacs/lisp/subr.el  Sun Dec 16 12:41:20 2001
***************
*** 1216,1223 ****
               (setq ,current-message (current-message))
               (message "%s" ,temp-message))
             ,@body)
!        (and ,temp-message ,current-message
!             (message "%s" ,current-message))))))
  
  (defmacro with-temp-buffer (&rest body)
    "Create a temporary buffer, and evaluate BODY there like `progn'.
--- 1216,1225 ----
               (setq ,current-message (current-message))
               (message "%s" ,temp-message))
             ,@body)
!        (and ,temp-message
!             (if ,current-message
!                 (message "%s" ,current-message)
!               (message nil)))))))
  
  (defmacro with-temp-buffer (&rest body)
    "Create a temporary buffer, and evaluate BODY there like `progn'.



reply via email to

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