]> git.eshelyaron.com Git - emacs.git/commitdiff
(url-https-expand-file-name): Resolve directly to url-default-expander
authorGlenn Morris <rgm@gnu.org>
Sat, 30 Aug 2008 02:22:47 +0000 (02:22 +0000)
committerGlenn Morris <rgm@gnu.org>
Sat, 30 Aug 2008 02:22:47 +0000 (02:22 +0000)
rather than via another alias.
(url-default-expander): Autoload an autoload.  (Bug#825).

lisp/url/ChangeLog
lisp/url/url-http.el

index 214c7a2bd287966047034b79d2a2a1fa75db8fea..bb70ab68ba846c15350aaba3d4c8b63307b81ccf 100644 (file)
@@ -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-07-02  Juanma Barranquero  <lekktu@gmail.com>
 
        * url.el (url-do-setup):
index 0a3acff31a1790fa966f01bf477a7d19375962eb..fc26447d7047eca01e381a50edeee88f5f960ca2 100644 (file)
@@ -1,6 +1,7 @@
 ;;; url-http.el --- HTTP retrieval routines
 
-;; Copyright (C) 1999, 2001, 2004, 2005, 2006, 2007, 2008  Free Software Foundation, Inc.
+;; Copyright (C) 1999, 2001, 2004, 2005, 2006, 2007,
+;;   2008  Free Software Foundation, Inc.
 
 ;; Author: Bill Perry <wmperry@gnu.org>
 ;; Keywords: comm, data, processes
@@ -1361,8 +1362,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