diff options
author | Richard M. Stallman <rms@gnu.org> | 2006-05-25 00:20:40 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2006-05-25 00:20:40 +0000 |
commit | 60f7e8b6638bd63d6055add0e202e09f04208f5c (patch) | |
tree | 95bdb4891f35aa03990eff5a294633c88665269c | |
parent | 113fe928bb71fc6d99b5b0c7220daa9d16359f43 (diff) | |
download | emacs-60f7e8b6638bd63d6055add0e202e09f04208f5c.tar.gz |
(with-local-quit): Doc fix.
-rw-r--r-- | lisp/subr.el | 4 |
1 files changed, 2 insertions, 2 deletions
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)) |