diff options
| author | Glenn Morris | 2008-08-30 02:24:00 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-08-30 02:24:00 +0000 |
| commit | cbd5b3d95ecd6ef2e955911c913856824aaa7639 (patch) | |
| tree | 8ec5022ab3021dc89fbacf7fd9ea020e9f46bcce | |
| parent | 565f0b98c20501d33d8f8112891d72888b559b67 (diff) | |
| download | emacs-cbd5b3d95ecd6ef2e955911c913856824aaa7639.tar.gz emacs-cbd5b3d95ecd6ef2e955911c913856824aaa7639.zip | |
(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/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/url/url-http.el | 3 |
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 @@ | |||
| 1 | 2008-08-30 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * url-http.el (url-https-expand-file-name): Resolve directly to | ||
| 4 | url-default-expander rather than via another alias. | ||
| 5 | (url-default-expander): Autoload an autoload. (Bug#825). | ||
| 6 | |||
| 1 | 2008-04-04 Magnus Henoch <mange@freemail.hu> | 7 | 2008-04-04 Magnus Henoch <mange@freemail.hu> |
| 2 | 8 | ||
| 3 | * url-http.el (url-http-chunked-encoding-after-change-function): | 9 | * 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 | |||
| 1361 | (defconst url-https-default-port 443 "Default HTTPS port.") | 1361 | (defconst url-https-default-port 443 "Default HTTPS port.") |
| 1362 | ;;;###autoload | 1362 | ;;;###autoload |
| 1363 | (defconst url-https-asynchronous-p t "HTTPS retrievals are asynchronous.") | 1363 | (defconst url-https-asynchronous-p t "HTTPS retrievals are asynchronous.") |
| 1364 | ;;;###autoload (autoload 'url-default-expander "url-expand") | ||
| 1364 | ;;;###autoload | 1365 | ;;;###autoload |
| 1365 | (defalias 'url-https-expand-file-name 'url-http-expand-file-name) | 1366 | (defalias 'url-https-expand-file-name 'url-default-expander) |
| 1366 | 1367 | ||
| 1367 | (defmacro url-https-create-secure-wrapper (method args) | 1368 | (defmacro url-https-create-secure-wrapper (method args) |
| 1368 | `(defun ,(intern (format (if method "url-https-%s" "url-https") method)) ,args | 1369 | `(defun ,(intern (format (if method "url-https-%s" "url-https") method)) ,args |