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
commite5f1b243faf86cb300f9abdec9f02afc723f65a7 (patch)
tree88ca79daa8f9f9d5e3e791a4b501d211e95bcdb0 /lisp/simple.el
parent85fe03a0546bcccaf7e15915458fa9865bb1d1ce (diff)
downloademacs-e5f1b243faf86cb300f9abdec9f02afc723f65a7.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.