1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-29 11:02:01 +00:00

(Quitting): Clarify value of with-local-quit.

This commit is contained in:
Richard M. Stallman 2004-12-28 12:36:43 +00:00
parent f7e2828514
commit eab463f6ce
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,11 @@
2004-12-28 Richard M. Stallman <rms@gnu.org>
* commands.texi (Quitting): Clarify value of with-local-quit.
* elisp.texi (Top): Fix previous change.
* loading.texi (Loading): Fix previous change.
2004-12-27 Richard M. Stallman <rms@gnu.org>
* Makefile.in (MAKEINFO): Specify --force.

View File

@ -2605,7 +2605,8 @@ non-@code{nil}, then @code{quit-flag} has no special effect.
This macro executes @var{forms} in sequence, but allows quitting, at
least locally, within @var{body} even if @code{inhibit-quit} was
non-@code{nil} outside this construct. It returns the value of the
last form in @var{forms}.
last form in @var{forms}, unless exited by quitting, in which case
it returns @code{nil}.
If @code{inhibit-quit} is @code{nil} on entry to @code{with-local-quit},
it only executes the @var{forms}, and setting @code{quit-flag} causes