Variable: url-cookie-save-interval
url-cookie-save-interval is a customizable variable defined in
url-cookie.el.gz.
Value
3600
Documentation
The number of seconds between automatic saves of cookies.
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-cookie-setup-save-timer function manually.
Source Code
;; Defined in /usr/src/emacs/lisp/url/url-cookie.el.gz
(defcustom url-cookie-save-interval 3600
"The number of seconds between automatic saves of cookies.
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-cookie-setup-save-timer' function manually."
:set (lambda (var val)
(set-default var val)
(if (bound-and-true-p url-setup-done)
(url-cookie-setup-save-timer)))
:type 'natnum
:group 'url-cookie)