Variable: dframe-update-speed

dframe-update-speed is a customizable variable defined in dframe.el.gz.

Value

1

Documentation

Idle time in seconds needed before dframe will update itself.

Updates occur to allow dframe to display directory information relevant to the buffer you are currently editing. The value will be passed to run-with-idle-timer, and can be an integer or a float. However, setopt will not accept a list of the kind returned by current-idle-time as valid.

Probably introduced at or before Emacs version 22.1.

Source Code

;; Defined in /usr/src/emacs/lisp/dframe.el.gz
(defcustom dframe-update-speed 1
  "Idle time in seconds needed before dframe will update itself.
Updates occur to allow dframe to display directory information relevant
to the buffer you are currently editing.  The value will be passed
to `run-with-idle-timer', and can be an integer or a float.
However, `setopt' will not accept a list of the kind returned
by `current-idle-time' as valid."
  :group 'dframe
  :type 'number)