diff options
| author | Stefan Monnier | 2006-01-02 05:25:13 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2006-01-02 05:25:13 +0000 |
| commit | 55262b16df717fe533ea4ad23dac3f02398c9055 (patch) | |
| tree | 2af2d1f686ce36ffd4c80136ab23319594c8edb6 | |
| parent | 2ef88a693d9c145efd2eff042ddcc3c311215f71 (diff) | |
| download | emacs-55262b16df717fe533ea4ad23dac3f02398c9055.tar.gz emacs-55262b16df717fe533ea4ad23dac3f02398c9055.zip | |
(url-retrieve-synchronously): Don't autoload.
| -rw-r--r-- | lisp/url/ChangeLog | 8 | ||||
| -rw-r--r-- | lisp/url/url-handlers.el | 3 |
2 files changed, 9 insertions, 2 deletions
diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog index ac6afe45608..cc2d1eace59 100644 --- a/lisp/url/ChangeLog +++ b/lisp/url/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2006-01-02 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 2 | |||
| 3 | * url-handlers.el (url-retrieve-synchronously): Don't autoload. | ||
| 4 | |||
| 5 | * url.el (url-retrieve, url-retrieve-synchronously): Autoload. | ||
| 6 | |||
| 7 | * url-cache.el: Require `url'. | ||
| 8 | |||
| 1 | 2005-12-27 Stefan Monnier <monnier@iro.umontreal.ca> | 9 | 2005-12-27 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 10 | ||
| 3 | * url-cache.el (url-store-in-cache): Use save-current-buffer. | 11 | * url-cache.el (url-store-in-cache): Use save-current-buffer. |
diff --git a/lisp/url/url-handlers.el b/lisp/url/url-handlers.el index 1c9d1d9c0b1..0338eefd268 100644 --- a/lisp/url/url-handlers.el +++ b/lisp/url/url-handlers.el | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | ;;; url-handlers.el --- file-name-handler stuff for URL loading | 1 | ;;; url-handlers.el --- file-name-handler stuff for URL loading |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1996, 1997, 1998, 1999, 2004, | 3 | ;; Copyright (C) 1996, 1997, 1998, 1999, 2004, |
| 4 | ;; 2005 Free Software Foundation, Inc. | 4 | ;; 2005, 2006 Free Software Foundation, Inc. |
| 5 | 5 | ||
| 6 | ;; Keywords: comm, data, processes, hypermedia | 6 | ;; Keywords: comm, data, processes, hypermedia |
| 7 | 7 | ||
| @@ -37,7 +37,6 @@ | |||
| 37 | ;; after mm-dissect-buffer and defined in the same file. | 37 | ;; after mm-dissect-buffer and defined in the same file. |
| 38 | ;; The following are autoloaded instead of `require'd to avoid eagerly | 38 | ;; The following are autoloaded instead of `require'd to avoid eagerly |
| 39 | ;; loading all of URL when turning on url-handler-mode in the .emacs. | 39 | ;; loading all of URL when turning on url-handler-mode in the .emacs. |
| 40 | (autoload 'url-retrieve-synchronously "url" "Retrieve url synchronously.") | ||
| 41 | (autoload 'url-expand-file-name "url-expand" "Convert url to a fully specified url, and canonicalize it.") | 40 | (autoload 'url-expand-file-name "url-expand" "Convert url to a fully specified url, and canonicalize it.") |
| 42 | (autoload 'mm-dissect-buffer "mm-decode" "Dissect the current buffer and return a list of MIME handles.") | 41 | (autoload 'mm-dissect-buffer "mm-decode" "Dissect the current buffer and return a list of MIME handles.") |
| 43 | (autoload 'url-scheme-get-property "url-methods" "Get property of a URL SCHEME.") | 42 | (autoload 'url-scheme-get-property "url-methods" "Get property of a URL SCHEME.") |