# HG changeset patch # User Richard M. Stallman # Date 1091245189 0 # Node ID 1bef61b14e789401de40c4fc77d47261133ec3ef # Parent c35c8a6e6baa42dd966ec4431fabcfb7aac1cb1c (with-local-quit): Doc fix. diff -r c35c8a6e6baa -r 1bef61b14e78 lisp/subr.el --- a/lisp/subr.el Sat Jul 31 03:37:21 2004 +0000 +++ b/lisp/subr.el Sat Jul 31 03:39:49 2004 +0000 @@ -1894,7 +1894,10 @@ (kill-buffer nil))))) (defmacro with-local-quit (&rest body) - "Execute BODY with `inhibit-quit' temporarily bound to nil." + "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))