changeset 51220:c7730f2ad484

(idle-update-delay): New variable.
author Juanma Barranquero <lekktu@gmail.com>
date Sun, 25 May 2003 01:45:14 +0000
parents b86109f9a829
children 62a2a306bc43
files lisp/simple.el
diffstat 1 files changed, 8 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/simple.el	Sun May 25 01:34:37 2003 +0000
+++ b/lisp/simple.el	Sun May 25 01:45:14 2003 +0000
@@ -4451,6 +4451,14 @@
   (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.