diff options
| -rw-r--r-- | lisp/emacs-lisp/package.el | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index e6815fd9644..a72522ad8f8 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el | |||
| @@ -1028,7 +1028,6 @@ is wrapped around any parts requiring it." | |||
| 1028 | deps)))) | 1028 | deps)))) |
| 1029 | 1029 | ||
| 1030 | (declare-function lm-header "lisp-mnt" (header)) | 1030 | (declare-function lm-header "lisp-mnt" (header)) |
| 1031 | (declare-function lm-header-multiline "lisp-mnt" (header)) | ||
| 1032 | (declare-function lm-homepage "lisp-mnt" (&optional file)) | 1031 | (declare-function lm-homepage "lisp-mnt" (&optional file)) |
| 1033 | (declare-function lm-keywords-list "lisp-mnt" (&optional file)) | 1032 | (declare-function lm-keywords-list "lisp-mnt" (&optional file)) |
| 1034 | (declare-function lm-maintainer "lisp-mnt" (&optional file)) | 1033 | (declare-function lm-maintainer "lisp-mnt" (&optional file)) |
| @@ -1055,8 +1054,7 @@ boundaries." | |||
| 1055 | (narrow-to-region start (point)) | 1054 | (narrow-to-region start (point)) |
| 1056 | (require 'lisp-mnt) | 1055 | (require 'lisp-mnt) |
| 1057 | ;; Use some headers we've invented to drive the process. | 1056 | ;; Use some headers we've invented to drive the process. |
| 1058 | (let* ((requires-str | 1057 | (let* ((requires-str (lm-header "package-requires")) |
| 1059 | (mapconcat 'identity (lm-header-multiline "package-requires") " ")) | ||
| 1060 | ;; Prefer Package-Version; if defined, the package author | 1058 | ;; Prefer Package-Version; if defined, the package author |
| 1061 | ;; probably wants us to use it. Otherwise try Version. | 1059 | ;; probably wants us to use it. Otherwise try Version. |
| 1062 | (pkg-version | 1060 | (pkg-version |