diff options
| author | Alan Mackenzie | 2017-02-12 10:59:03 +0000 |
|---|---|---|
| committer | Alan Mackenzie | 2017-02-12 10:59:03 +0000 |
| commit | f4d5b687150810129b7a1d5b006e31ccf82b691b (patch) | |
| tree | 4229b13800349032697daae3904dc3773e6b7a80 /doc/lispref/internals.texi | |
| parent | d5514332d4a6092673ce1f78fadcae0c57f7be64 (diff) | |
| parent | 148100d98319499f0ac6f57b8be08cbd14884a5c (diff) | |
| download | emacs-comment-cache.tar.gz emacs-comment-cache.zip | |
Merge branch 'master' into comment-cachecomment-cache
Diffstat (limited to 'doc/lispref/internals.texi')
| -rw-r--r-- | doc/lispref/internals.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/lispref/internals.texi b/doc/lispref/internals.texi index 69d21bedaa4..663d0fd92b9 100644 --- a/doc/lispref/internals.texi +++ b/doc/lispref/internals.texi | |||
| @@ -672,7 +672,7 @@ usage: (or CONDITIONS...) */) | |||
| 672 | if (!NILP (val)) | 672 | if (!NILP (val)) |
| 673 | break; | 673 | break; |
| 674 | args = XCDR (args); | 674 | args = XCDR (args); |
| 675 | QUIT; | 675 | maybe_quit (); |
| 676 | @} | 676 | @} |
| 677 | @end group | 677 | @end group |
| 678 | 678 | ||
| @@ -792,8 +792,8 @@ their addresses after performing Lisp evaluation. Lisp evaluation can | |||
| 792 | occur via calls to @code{eval_sub} or @code{Feval}, either directly or | 792 | occur via calls to @code{eval_sub} or @code{Feval}, either directly or |
| 793 | indirectly. | 793 | indirectly. |
| 794 | 794 | ||
| 795 | @cindex @code{QUIT}, use in Lisp primitives | 795 | @cindex @code{maybe_quit}, use in Lisp primitives |
| 796 | Note the call to the @code{QUIT} macro inside the loop: this macro | 796 | Note the call to @code{maybe_quit} inside the loop: this function |
| 797 | checks whether the user pressed @kbd{C-g}, and if so, aborts the | 797 | checks whether the user pressed @kbd{C-g}, and if so, aborts the |
| 798 | processing. You should do that in any loop that can potentially | 798 | processing. You should do that in any loop that can potentially |
| 799 | require a large number of iterations; in this case, the list of | 799 | require a large number of iterations; in this case, the list of |