diff options
| -rw-r--r-- | lisp/url/url-history.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/url/url-history.el b/lisp/url/url-history.el index 1fa085400d8..70a1a0c1441 100644 --- 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." | |||
| 106 | 106 | ||
| 107 | (defun url-history-update-url (url time) | 107 | (defun url-history-update-url (url time) |
| 108 | (setq url-history-changed-since-last-save t) | 108 | (setq url-history-changed-since-last-save t) |
| 109 | (puthash (if (vectorp url) (url-recreate-url url) url) time | 109 | (puthash (if (url-p url) (url-recreate-url url) url) time |
| 110 | url-history-hash-table)) | 110 | url-history-hash-table)) |
| 111 | 111 | ||
| 112 | (autoload 'url-make-private-file "url-util") | 112 | (autoload 'url-make-private-file "url-util") |