diff options
| author | Glenn Morris | 2018-03-18 15:27:57 -0700 |
|---|---|---|
| committer | Glenn Morris | 2018-03-18 15:27:57 -0700 |
| commit | 667cdf421ff64b1fe736f75e8a7f8864de1b5026 (patch) | |
| tree | 7ad59a2df014866c4952f6242b17b73704bed632 | |
| parent | 3a3aa0e056a3f4e8023bc8e8142ffbc73daac4ea (diff) | |
| download | emacs-667cdf421ff64b1fe736f75e8a7f8864de1b5026.tar.gz emacs-667cdf421ff64b1fe736f75e8a7f8864de1b5026.zip | |
* lisp/url/url-handlers.el: No need for subr-x at run-time.
| -rw-r--r-- | lisp/url/url-handlers.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/url/url-handlers.el b/lisp/url/url-handlers.el index fc5f43bccb2..98f9f1e3739 100644 --- a/lisp/url/url-handlers.el +++ b/lisp/url/url-handlers.el | |||
| @@ -28,7 +28,7 @@ | |||
| 28 | ;; (require 'url-util) | 28 | ;; (require 'url-util) |
| 29 | (eval-when-compile (require 'mm-decode)) | 29 | (eval-when-compile (require 'mm-decode)) |
| 30 | ;; (require 'mailcap) | 30 | ;; (require 'mailcap) |
| 31 | (require 'subr-x) | 31 | (eval-when-compile (require 'subr-x)) |
| 32 | ;; The following are autoloaded instead of `require'd to avoid eagerly | 32 | ;; The following are autoloaded instead of `require'd to avoid eagerly |
| 33 | ;; loading all of URL when turning on url-handler-mode in the .emacs. | 33 | ;; loading all of URL when turning on url-handler-mode in the .emacs. |
| 34 | (autoload 'url-expand-file-name "url-expand" "Convert url to a fully specified url, and canonicalize it.") | 34 | (autoload 'url-expand-file-name "url-expand" "Convert url to a fully specified url, and canonicalize it.") |