diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2008-01-07 06:52:19 +0000 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2008-01-07 06:52:19 +0000 |
commit | 80e4b01d334beaef3b481101e5af01962ce71c3b (patch) | |
tree | 6b6e35c42af338e7558da130bfd856d84cdc56bf /lisp/url | |
parent | 1030ad5e1122092073dc58bcd9d2125cc8cdf5cb (diff) | |
download | emacs-80e4b01d334beaef3b481101e5af01962ce71c3b.tar.gz |
* url-handlers.el (url-file-handler): Autoload.
Diffstat (limited to 'lisp/url')
-rw-r--r-- | lisp/url/ChangeLog | 6 | ||||
-rw-r--r-- | lisp/url/url-handlers.el | 1 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog index 93c88b69a0c..24fe44214b6 100644 --- a/lisp/url/ChangeLog +++ b/lisp/url/ChangeLog @@ -1,3 +1,7 @@ +2008-01-07 Michael Albinus <michael.albinus@gmx.de> + + * url-handlers.el (url-file-handler): Autoload. + 2007-12-11 Glenn Morris <rgm@gnu.org> * url-util.el (url-make-private-file): New function. @@ -916,7 +920,7 @@ * texi/url.txi: Start making it vaguely useful. * texi/Makefile.in (install): Cope with Debian install-info. - From Kai.Grossjohann@CS.Uni-Dortmund.DE (Kai Großjohann). + From Kai.Grossjohann@CS.Uni-Dortmund.DE (Kai Großjohann). 2002-04-22 Dave Love <fx@gnu.org> diff --git a/lisp/url/url-handlers.el b/lisp/url/url-handlers.el index 7edb4785091..8dd9792f467 100644 --- a/lisp/url/url-handlers.el +++ b/lisp/url/url-handlers.el @@ -125,6 +125,7 @@ particularly bad at this\).") (inhibit-file-name-operation operation)) (apply operation args))) +;;;###autoload (defun url-file-handler (operation &rest args) "Function called from the `file-name-handler-alist' routines. OPERATION is what needs to be done (`file-exists-p', etc). ARGS are |