Variable: url-history-file

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

Value

nil

Documentation

The global history file for the URL package.

This file contains a list of all the URLs you have visited. This file is parsed at startup and used to provide URL completion.

Source Code

;; Defined in /usr/src/emacs/lisp/url/url-history.el.gz
(defcustom url-history-file nil
  "The global history file for the URL package.
This file contains a list of all the URLs you have visited.  This file
is parsed at startup and used to provide URL completion."
  :type '(choice (const :tag "Default" :value nil) file)
  :group 'url-history)