diff lisp/subr.el @ 70903:fe6029063ab4

(with-local-quit): Doc fix.
author Richard M. Stallman <rms@gnu.org>
date Thu, 25 May 2006 00:20:40 +0000
parents cc60343f8fd6
children a0da1a83020d
line wrap: on
line diff
--- a/lisp/subr.el	Thu May 25 00:19:02 2006 +0000
+++ b/lisp/subr.el	Thu May 25 00:20:40 2006 +0000
@@ -2315,8 +2315,8 @@
 (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))