Function: url-history-parse-history
url-history-parse-history is a byte-compiled function defined in
url-history.el.gz.
Signature
(url-history-parse-history &optional FNAME)
Documentation
Parse a history file stored in FNAME.
Source Code
;; Defined in /usr/src/emacs/lisp/url/url-history.el.gz
(defun url-history-parse-history (&optional fname)
"Parse a history file stored in FNAME."
;; Parse out the mosaic global history file for completions, etc.
(or fname (setq fname (expand-file-name url-history-file)))
(cond
((not (file-exists-p fname))
;; It's completely normal for this file not to exist, so don't complain.
;; (message "%s does not exist." fname)
)
((not (file-readable-p fname))
(message "%s is unreadable." fname))
(t
(condition-case nil
(load fname nil t)
(error (message "Could not load %s" fname))))))