Variable: url-history-save-interval

url-history-save-interval is a customizable variable defined in url-history.el.gz.

Value

3600

Documentation

The number of seconds between automatic saves of the history list.

Default is 1 hour. Note that if you change this variable outside of the customize interface after url-do-setup has been run, you need to run the url-history-setup-save-timer function manually.

Source Code

;; Defined in /usr/src/emacs/lisp/url/url-history.el.gz
(defcustom url-history-save-interval 3600
  "The number of seconds between automatic saves of the history list.
Default is 1 hour.  Note that if you change this variable outside of
the `customize' interface after `url-do-setup' has been run, you need
to run the `url-history-setup-save-timer' function manually."
  :set (lambda (var val)
         (set-default var val)
         (if (bound-and-true-p url-setup-done)
             (url-history-setup-save-timer)))
  :type 'natnum
  :group 'url-history)