(describe-package-1): Fix bug#69712
* lisp/emacs-lisp/package.el (describe-package-1): Improve the test to determine if `maintainers` contains a single cons or a list of conses.
This commit is contained in:
parent
8578652b5b
commit
0f04aa06a6
1 changed files with 1 additions and 1 deletions
|
@ -2941,7 +2941,7 @@ Helper function for `describe-package'."
|
|||
(insert " "))
|
||||
(insert "\n"))
|
||||
(when maintainers
|
||||
(unless (proper-list-p maintainers)
|
||||
(when (stringp (car maintainers))
|
||||
(setq maintainers (list maintainers)))
|
||||
(package--print-help-section
|
||||
(if (cdr maintainers) "Maintainers" "Maintainer"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue