summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2008-08-30 02:24:00 +0000
committerGlenn Morris <rgm@gnu.org>2008-08-30 02:24:00 +0000
commitcbd5b3d95ecd6ef2e955911c913856824aaa7639 (patch)
tree8ec5022ab3021dc89fbacf7fd9ea020e9f46bcce
parent565f0b98c20501d33d8f8112891d72888b559b67 (diff)
downloademacs-cbd5b3d95ecd6ef2e955911c913856824aaa7639.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/ChangeLog6
-rw-r--r--lisp/url/url-http.el3
2 files changed, 8 insertions, 1 deletions
diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog
index 8eeb9c89537..ae12c685dcc 100644
--- a/lisp/url/ChangeLog
+++ b/lisp/url/ChangeLog
@@ -1,3 +1,9 @@
+2008-08-30 Glenn Morris <rgm@gnu.org>
+
+ * url-http.el (url-https-expand-file-name): Resolve directly to
+ url-default-expander rather than via another alias.
+ (url-default-expander): Autoload an autoload. (Bug#825).
+
2008-04-04 Magnus Henoch <mange@freemail.hu>
* url-http.el (url-http-chunked-encoding-after-change-function):
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