diff options
| -rw-r--r-- | lispref/display.texi | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lispref/display.texi b/lispref/display.texi index 1b8e66ec23e..3d1d3de7b6d 100644 --- a/lispref/display.texi +++ b/lispref/display.texi | |||
| @@ -94,6 +94,19 @@ at all if input is available before it starts. Most of the time, this | |||
| 94 | is exactly what you want. However, you can prevent preemption by | 94 | is exactly what you want. However, you can prevent preemption by |
| 95 | binding @code{redisplay-dont-pause} to a non-@code{nil} value. | 95 | binding @code{redisplay-dont-pause} to a non-@code{nil} value. |
| 96 | 96 | ||
| 97 | @tindex redisplay-preemption-period | ||
| 98 | @defvar redisplay-preemption-period | ||
| 99 | This variable controls how often Emacs checks for new input during | ||
| 100 | redisplay. The default setting is to check for input every 0.1 | ||
| 101 | seconds after redislpay has started. If input arrives, redisplay | ||
| 102 | stops, and all available input is processed before redisplay starts over. | ||
| 103 | If this variable is set to @code{nil}, redisplay--once started--is never | ||
| 104 | preempted by input. | ||
| 105 | |||
| 106 | @emph{Note} that this variable is only available if Emacs is built | ||
| 107 | with support for sub-second timers. | ||
| 108 | @end defvar | ||
| 109 | |||
| 97 | @tindex redisplay-dont-pause | 110 | @tindex redisplay-dont-pause |
| 98 | @defvar redisplay-dont-pause | 111 | @defvar redisplay-dont-pause |
| 99 | If this variable is non-@code{nil}, pending input does not | 112 | If this variable is non-@code{nil}, pending input does not |