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: Sat, 31 Jul 2004 00:03:22 -0400

Index: emacs/lisp/subr.el
diff -c emacs/lisp/subr.el:1.400 emacs/lisp/subr.el:1.401
*** emacs/lisp/subr.el:1.400    Sun Jul 25 05:45:13 2004
--- emacs/lisp/subr.el  Sat Jul 31 03:39:49 2004
***************
*** 1894,1900 ****
         (kill-buffer nil)))))
  
  (defmacro with-local-quit (&rest body)
!   "Execute BODY with `inhibit-quit' temporarily bound to nil."
    (declare (debug t) (indent 0))
    `(condition-case nil
         (let ((inhibit-quit nil))
--- 1894,1903 ----
         (kill-buffer nil)))))
  
  (defmacro with-local-quit (&rest body)
!   "Execute BODY, allowing quits to terminate BODY but not escape further.
! When a quit terminates BODY, `with-local-quit' requests another quit when
! it finishes.  That quit will be processed in turn, the next time quitting
! is again allowed."
    (declare (debug t) (indent 0))
    `(condition-case nil
         (let ((inhibit-quit nil))




reply via email to

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