diff options
| -rw-r--r-- | lisp/simple.el | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index aeaebbffb34..b5723965665 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -4451,6 +4451,14 @@ See also `normal-erase-is-backspace'." | |||
| 4451 | (if (interactive-p) | 4451 | (if (interactive-p) |
| 4452 | (message "Delete key deletes %s" | 4452 | (message "Delete key deletes %s" |
| 4453 | (if normal-erase-is-backspace "forward" "backward")))) | 4453 | (if normal-erase-is-backspace "forward" "backward")))) |
| 4454 | |||
| 4455 | (defcustom idle-update-delay 0.5 | ||
| 4456 | "*Idle time delay before updating various things on the screen. | ||
| 4457 | Various Emacs features that update auxiliary information when point moves | ||
| 4458 | wait this many seconds after Emacs becomes idle before doing an update." | ||
| 4459 | :type 'number | ||
| 4460 | :group 'display | ||
| 4461 | :version "21.4") | ||
| 4454 | 4462 | ||
| 4455 | 4463 | ||
| 4456 | ;; Minibuffer prompt stuff. | 4464 | ;; Minibuffer prompt stuff. |