diff options
| author | Eli Zaretskii | 2002-05-08 17:59:04 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2002-05-08 17:59:04 +0000 |
| commit | 34c0b12eb64fe22ed5e3525beee8d705da17e525 (patch) | |
| tree | fb545c73fa08c1ce02688a8c18f22ec493e386f5 | |
| parent | a4f430482b3043b849fb99f3b1294847359ba4e1 (diff) | |
| download | emacs-34c0b12eb64fe22ed5e3525beee8d705da17e525.tar.gz emacs-34c0b12eb64fe22ed5e3525beee8d705da17e525.zip | |
(Quitting): Add an index entry containing the word ``interrupt''.
| -rw-r--r-- | lispref/commands.texi | 2 |
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 | |||
| 2344 | case of @code{read-quoted-char}, this is so that @kbd{C-q} can be used | 2345 | case of @code{read-quoted-char}, this is so that @kbd{C-q} can be used |
| 2345 | to quote a @kbd{C-g}. | 2346 | to 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 |
| 2348 | the variable @code{inhibit-quit} to a non-@code{nil} value. Then, | 2350 | the variable @code{inhibit-quit} to a non-@code{nil} value. Then, |
| 2349 | although @kbd{C-g} still sets @code{quit-flag} to @code{t} as usual, the | 2351 | although @kbd{C-g} still sets @code{quit-flag} to @code{t} as usual, the |