# HG changeset patch # User Glenn Morris # Date 1220063013 0 # Node ID 681a8553e83235a185a7e333c8bafd128cb3c739 # Parent 99fcb7a012f0365b8fd4b0d30b165fba05f44d81 (url-https-expand-file-name): Resolve directly to url-default-expander rather than via another alias. (url-default-expander): Autoload an autoload. (Bug#825). diff -r 99fcb7a012f0 -r 681a8553e832 lisp/url/url-http.el --- a/lisp/url/url-http.el Fri Aug 29 10:08:26 2008 +0000 +++ b/lisp/url/url-http.el Sat Aug 30 02:23:33 2008 +0000 @@ -1361,8 +1361,9 @@ (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