aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2002-05-08 17:59:04 +0000
committerEli Zaretskii2002-05-08 17:59:04 +0000
commit34c0b12eb64fe22ed5e3525beee8d705da17e525 (patch)
treefb545c73fa08c1ce02688a8c18f22ec493e386f5
parenta4f430482b3043b849fb99f3b1294847359ba4e1 (diff)
downloademacs-34c0b12eb64fe22ed5e3525beee8d705da17e525.tar.gz
emacs-34c0b12eb64fe22ed5e3525beee8d705da17e525.zip
(Quitting): Add an index entry containing the word ``interrupt''.
-rw-r--r--lispref/commands.texi2
1 files changed, 2 insertions, 0 deletions
diff --git a/lispref/commands.texi b/lispref/commands.texi
index f6be1c332a9..c3a1a6d9d82 100644
--- a/lispref/commands.texi
+++ b/lispref/commands.texi
@@ -2302,6 +2302,7 @@ Use @code{sleep-for} when you wish to guarantee a delay.
2302@section Quitting 2302@section Quitting
2303@cindex @kbd{C-g} 2303@cindex @kbd{C-g}
2304@cindex quitting 2304@cindex quitting
2305@cindex interrupt Lisp functions
2305 2306
2306 Typing @kbd{C-g} while a Lisp function is running causes Emacs to 2307 Typing @kbd{C-g} while a Lisp function is running causes Emacs to
2307@dfn{quit} whatever it is doing. This means that control returns to the 2308@dfn{quit} whatever it is doing. This means that control returns to the
@@ -2344,6 +2345,7 @@ about the special behavior of @kbd{C-g} in the command loop. In the
2344case of @code{read-quoted-char}, this is so that @kbd{C-q} can be used 2345case of @code{read-quoted-char}, this is so that @kbd{C-q} can be used
2345to quote a @kbd{C-g}. 2346to quote a @kbd{C-g}.
2346 2347
2348@cindex prevent quitting
2347 You can prevent quitting for a portion of a Lisp function by binding 2349 You can prevent quitting for a portion of a Lisp function by binding
2348the variable @code{inhibit-quit} to a non-@code{nil} value. Then, 2350the variable @code{inhibit-quit} to a non-@code{nil} value. Then,
2349although @kbd{C-g} still sets @code{quit-flag} to @code{t} as usual, the 2351although @kbd{C-g} still sets @code{quit-flag} to @code{t} as usual, the