mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-06-14 04:21:24 +00:00
; Fix type error in 'describe-package-1'
* lisp/emacs-lisp/package.el (describe-package-1): Pass the package descriptor instead of a symbol to 'package-find-news-file'. (Bug#80220)
This commit is contained in:
parent
e14e9eb70b
commit
f263d2454f
1 changed files with 1 additions and 1 deletions
|
|
@ -2675,7 +2675,7 @@ Helper function for `describe-package'."
|
|||
(maintainers (or (cdr (assoc :maintainer extras))
|
||||
(cdr (assoc :maintainers extras))))
|
||||
(authors (cdr (assoc :authors extras)))
|
||||
(news (package-find-news-file pkg)))
|
||||
(news (package-find-news-file desc)))
|
||||
(when (string= status "avail-obso")
|
||||
(setq status "available obsolete"))
|
||||
(when incompatible-reason
|
||||
|
|
|
|||
Loading…
Reference in a new issue