summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2008-08-30 02:23:33 +0000
committerGlenn Morris <rgm@gnu.org>2008-08-30 02:23:33 +0000
commit4a8655dc8eaa098fb00807d9946045aa1d4db477 (patch)
tree24bf2c53c1b46fa5ff13a21879dac6a9938a51b5
parent46f074f4738e551b1b5db1ecf102d196db970ba2 (diff)
downloademacs-4a8655dc8eaa098fb00807d9946045aa1d4db477.tar.gz
(url-https-expand-file-name): Resolve directly to url-default-expander
rather than via another alias. (url-default-expander): Autoload an autoload. (Bug#825).
-rw-r--r--lisp/url/url-http.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/url/url-http.el b/lisp/url/url-http.el
index 98060461f3d..326d7fc35db 100644
--- a/lisp/url/url-http.el
+++ b/lisp/url/url-http.el
@@ -1361,8 +1361,9 @@ p3p
(defconst url-https-default-port 443 "Default HTTPS port.")
;;;###autoload
(defconst url-https-asynchronous-p t "HTTPS retrievals are asynchronous.")
+;;;###autoload (autoload 'url-default-expander "url-expand")
;;;###autoload
-(defalias 'url-https-expand-file-name 'url-http-expand-file-name)
+(defalias 'url-https-expand-file-name 'url-default-expander)
(defmacro url-https-create-secure-wrapper (method args)
`(defun ,(intern (format (if method "url-https-%s" "url-https") method)) ,args