diff options
| author | Glenn Morris | 2008-08-30 02:22:47 +0000 |
|---|---|---|
| committer | Glenn Morris | 2008-08-30 02:22:47 +0000 |
| commit | e77e9cf40975a5943b3c2bfdab6eca1c44eaa32f (patch) | |
| tree | 49aa9e98449b04301cda4cc680aed33d0c2194bd | |
| parent | 36bdf1ff3ca1e776bc4be74f10e20bfbdb8d617a (diff) | |
| download | emacs-e77e9cf40975a5943b3c2bfdab6eca1c44eaa32f.tar.gz emacs-e77e9cf40975a5943b3c2bfdab6eca1c44eaa32f.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 | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog index 214c7a2bd28..bb70ab68ba8 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-07-02 Juanma Barranquero <lekktu@gmail.com> | 7 | 2008-07-02 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 8 | ||
| 3 | * url.el (url-do-setup): | 9 | * url.el (url-do-setup): |
diff --git a/lisp/url/url-http.el b/lisp/url/url-http.el index 0a3acff31a1..fc26447d704 100644 --- a/lisp/url/url-http.el +++ b/lisp/url/url-http.el | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | ;;; url-http.el --- HTTP retrieval routines | 1 | ;;; url-http.el --- HTTP retrieval routines |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1999, 2001, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. | 3 | ;; Copyright (C) 1999, 2001, 2004, 2005, 2006, 2007, |
| 4 | ;; 2008 Free Software Foundation, Inc. | ||
| 4 | 5 | ||
| 5 | ;; Author: Bill Perry <wmperry@gnu.org> | 6 | ;; Author: Bill Perry <wmperry@gnu.org> |
| 6 | ;; Keywords: comm, data, processes | 7 | ;; Keywords: comm, data, processes |
| @@ -1361,8 +1362,9 @@ p3p | |||
| 1361 | (defconst url-https-default-port 443 "Default HTTPS port.") | 1362 | (defconst url-https-default-port 443 "Default HTTPS port.") |
| 1362 | ;;;###autoload | 1363 | ;;;###autoload |
| 1363 | (defconst url-https-asynchronous-p t "HTTPS retrievals are asynchronous.") | 1364 | (defconst url-https-asynchronous-p t "HTTPS retrievals are asynchronous.") |
| 1365 | ;;;###autoload (autoload 'url-default-expander "url-expand") | ||
| 1364 | ;;;###autoload | 1366 | ;;;###autoload |
| 1365 | (defalias 'url-https-expand-file-name 'url-http-expand-file-name) | 1367 | (defalias 'url-https-expand-file-name 'url-default-expander) |
| 1366 | 1368 | ||
| 1367 | (defmacro url-https-create-secure-wrapper (method args) | 1369 | (defmacro url-https-create-secure-wrapper (method args) |
| 1368 | `(defun ,(intern (format (if method "url-https-%s" "url-https") method)) ,args | 1370 | `(defun ,(intern (format (if method "url-https-%s" "url-https") method)) ,args |