Variable: url-cookie-save-interval

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

Value

3600

Documentation

If non-nil, the number of seconds between automatic saves of cookies.

Default is 1 hour; set to nil to disable automatic saving of cookies. 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
  "If non-nil, the number of seconds between automatic saves of cookies.
Default is 1 hour; set to nil to disable automatic saving of cookies.
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 '(choice (const :tag "Disable automatic saving of cookies" :value nil)
                 (natnum :tag "Interval in seconds for auto-saving cookies")))