]> git.eshelyaron.com Git - emacs.git/commitdiff
(with-local-quit): Doc fix.
authorRichard M. Stallman <rms@gnu.org>
Thu, 25 May 2006 00:20:40 +0000 (00:20 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 25 May 2006 00:20:40 +0000 (00:20 +0000)
lisp/subr.el

index 711f18221895143b666ee125e8cbacff7b363186..c4fce6624bf9d1672065a2bedabf8b8f8552b5a8 100644 (file)
@@ -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))