summaryrefslogtreecommitdiff
path: root/lisp/simple.el
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2003-05-25 01:45:14 +0000
committerJuanma Barranquero <lekktu@gmail.com>2003-05-25 01:45:14 +0000
commitea82f0df29e71d1e135ba4e1cce9c837427c8015 (patch)
treea8d0ae192fca0836ae66988b6c9796e11ded1a41 /lisp/simple.el
parentf5fd8833fb9f437b6d77ac935d1a3e475713bd87 (diff)
downloademacs-ea82f0df29e71d1e135ba4e1cce9c837427c8015.tar.gz
(idle-update-delay): New variable.
Diffstat (limited to 'lisp/simple.el')
-rw-r--r--lisp/simple.el8
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'."
(if (interactive-p)
(message "Delete key deletes %s"
(if normal-erase-is-backspace "forward" "backward"))))
+
+(defcustom idle-update-delay 0.5
+ "*Idle time delay before updating various things on the screen.
+Various Emacs features that update auxiliary information when point moves
+wait this many seconds after Emacs becomes idle before doing an update."
+ :type 'number
+ :group 'display
+ :version "21.4")
;; Minibuffer prompt stuff.