+2005-02-26 James Cloos <cloos@jhcloos.com> (tiny change)
+
+ * url-history.el (url-have-visited-url): Don't barf if
+ url-history-hash-table is nil.
+
2005-02-14 Michael Welsh Duggan <md5i@cs.cmu.edu>
* url-http.el (url-http-parse-headers): Test url-automatic-caching.
(defun url-have-visited-url (url)
(url-do-setup)
- (gethash url url-history-hash-table nil))
+ (and url-history-hash-table
+ (gethash url url-history-hash-table nil)))
(defun url-completion-function (string predicate function)
(url-do-setup)