]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't assume url structs are vectors (Bug#27333)
authorNoam Postavsky <npostavs@gmail.com>
Thu, 15 Jun 2017 00:23:29 +0000 (20:23 -0400)
committerNoam Postavsky <npostavs@gmail.com>
Wed, 28 Jun 2017 11:39:05 +0000 (07:39 -0400)
* lisp/url/url-history.el (url-history-update-url): Use `url-p'
instead of `vectorp'.

lisp/url/url-history.el

index 1fa085400d80948cbae056936fe588e456d30613..70a1a0c1441ed414566cbd920033a8d6de97e482 100644 (file)
@@ -106,7 +106,7 @@ to run the `url-history-setup-save-timer' function manually."
 
 (defun url-history-update-url (url time)
   (setq url-history-changed-since-last-save t)
-  (puthash (if (vectorp url) (url-recreate-url url) url) time
+  (puthash (if (url-p url) (url-recreate-url url) url) time
            url-history-hash-table))
 
 (autoload 'url-make-private-file "url-util")