From: Richard M. Stallman Date: Thu, 25 May 2006 00:20:40 +0000 (+0000) Subject: (with-local-quit): Doc fix. X-Git-Tag: emacs-pretest-22.0.90~2349 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=60f7e8b6638bd63d6055add0e202e09f04208f5c;p=emacs.git (with-local-quit): Doc fix. --- diff --git a/lisp/subr.el b/lisp/subr.el index 711f1822189..c4fce6624bf 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -2315,8 +2315,8 @@ See also `with-temp-file' and `with-output-to-string'." (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' returns nil but -requests another quit. That quit will be processed, the next time quitting -is allowed once again." +requests another quit. That quit will be processed as soon as quitting +is allowed once again. (Immediately, if `inhibit-quit' is nil.)" (declare (debug t) (indent 0)) `(condition-case nil (let ((inhibit-quit nil))