projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5d45ba1
)
Don't assume url structs are vectors (Bug#27333)
author
Noam Postavsky
<npostavs@gmail.com>
Thu, 15 Jun 2017 00:23:29 +0000
(20:23 -0400)
committer
Noam 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
patch
|
blob
|
history
diff --git
a/lisp/url/url-history.el
b/lisp/url/url-history.el
index 1fa085400d80948cbae056936fe588e456d30613..70a1a0c1441ed414566cbd920033a8d6de97e482 100644
(file)
--- a/
lisp/url/url-history.el
+++ b/
lisp/url/url-history.el
@@
-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 (
vector
p 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")