Variable: url-history-track
url-history-track is a customizable variable defined in
url-history.el.gz.
Value
nil
Documentation
Controls whether to keep a list of all the URLs being visited.
If non-nil, the URL package will keep track of all the URLs visited. If set to t, then the list is saved to disk at the end of each Emacs session.
Source Code
;; Defined in /usr/src/emacs/lisp/url/url-history.el.gz
(defcustom url-history-track nil
"Controls whether to keep a list of all the URLs being visited.
If non-nil, the URL package will keep track of all the URLs visited.
If set to t, then the list is saved to disk at the end of each Emacs
session."
:set (lambda (var val)
(set-default var val)
(and (bound-and-true-p url-setup-done)
(url-history-setup-save-timer)))
:type '(choice (const :tag "off" nil)
(const :tag "on" t)
(other :tag "within session" session))
:group 'url-history)