diff options
| author | Paul Eggert | 2016-05-18 00:11:48 -0700 |
|---|---|---|
| committer | Paul Eggert | 2016-05-18 00:49:29 -0700 |
| commit | ccd5156c42771fc3262fa6b8103dc9d8429898d2 (patch) | |
| tree | 97b0cd28210425627c984c6e3275ec4a59dbffc6 | |
| parent | 374f6a5f34a83d3e4c518f0726558642293fdd71 (diff) | |
| download | emacs-ccd5156c42771fc3262fa6b8103dc9d8429898d2.tar.gz emacs-ccd5156c42771fc3262fa6b8103dc9d8429898d2.zip | |
Pacify byte-compiler in lisp/url
* lisp/url/url-misc.el, lisp/url/url-file.el (mm-disable-multibyte):
Add decl.
| -rw-r--r-- | lisp/url/url-file.el | 1 | ||||
| -rw-r--r-- | lisp/url/url-misc.el | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/lisp/url/url-file.el b/lisp/url/url-file.el index 9eb9377583d..61e83c09974 100644 --- a/lisp/url/url-file.el +++ b/lisp/url/url-file.el | |||
| @@ -27,6 +27,7 @@ | |||
| 27 | (require 'url-vars) | 27 | (require 'url-vars) |
| 28 | (require 'url-parse) | 28 | (require 'url-parse) |
| 29 | (require 'url-dired) | 29 | (require 'url-dired) |
| 30 | (declare-function mm-disable-multibyte "mm-util" ()) | ||
| 30 | 31 | ||
| 31 | (defconst url-file-default-port 21 "Default FTP port.") | 32 | (defconst url-file-default-port 21 "Default FTP port.") |
| 32 | (defconst url-file-asynchronous-p t "FTP transfers are asynchronous.") | 33 | (defconst url-file-asynchronous-p t "FTP transfers are asynchronous.") |
diff --git a/lisp/url/url-misc.el b/lisp/url/url-misc.el index 2c277fb69c2..14b9f7eab44 100644 --- a/lisp/url/url-misc.el +++ b/lisp/url/url-misc.el | |||
| @@ -24,6 +24,7 @@ | |||
| 24 | 24 | ||
| 25 | (require 'url-vars) | 25 | (require 'url-vars) |
| 26 | (require 'url-parse) | 26 | (require 'url-parse) |
| 27 | (declare-function mm-disable-multibyte "mm-util" ()) | ||
| 27 | (autoload 'Info-goto-node "info" "" t) | 28 | (autoload 'Info-goto-node "info" "" t) |
| 28 | (autoload 'man "man" nil t) | 29 | (autoload 'man "man" nil t) |
| 29 | 30 | ||