diff options
| author | Juanma Barranquero | 2015-11-27 10:22:03 +0100 |
|---|---|---|
| committer | Juanma Barranquero | 2015-11-27 10:22:03 +0100 |
| commit | 1e4010a12852007c7f6fa1242bbbe9e75cee1ed6 (patch) | |
| tree | 134fb7d8aff9fbcf4a7ed86d392ad062c50dfcb1 | |
| parent | 75336a29460752700e4e424a9c7aa932cc237689 (diff) | |
| download | emacs-1e4010a12852007c7f6fa1242bbbe9e75cee1ed6.tar.gz emacs-1e4010a12852007c7f6fa1242bbbe9e75cee1ed6.zip | |
* lisp/emacs-lisp/package.el: Declare `url-insert-buffer-contents'
| -rw-r--r-- | lisp/emacs-lisp/package.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index d811db9579f..9029dbd8a2b 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el | |||
| @@ -1115,6 +1115,9 @@ The return result is a `package-desc'." | |||
| 1115 | (insert (format "Error while verifying signature %s:\n" sig-file))) | 1115 | (insert (format "Error while verifying signature %s:\n" sig-file))) |
| 1116 | (insert "\nCommand output:\n" (epg-context-error-output context)))))) | 1116 | (insert "\nCommand output:\n" (epg-context-error-output context)))))) |
| 1117 | 1117 | ||
| 1118 | (declare-function url-insert-buffer-contents "url-handlers" | ||
| 1119 | (fn file &optional arglist fileonly)) | ||
| 1120 | |||
| 1118 | (defmacro package--with-work-buffer (location file &rest body) | 1121 | (defmacro package--with-work-buffer (location file &rest body) |
| 1119 | "Run BODY in a buffer containing the contents of FILE at LOCATION. | 1122 | "Run BODY in a buffer containing the contents of FILE at LOCATION. |
| 1120 | LOCATION is the base location of a package archive, and should be | 1123 | LOCATION is the base location of a package archive, and should be |