(describe-package-1): Handle (nil . "string") in :maintainer
* lisp/emacs-lisp/package.el (describe-package-1): Refine the check to distinguish the old single-maintainer format from the new multi-maintainer format. (bug#69712)
This commit is contained in:
parent
ee3ef57c24
commit
acfb2c6163
1 changed files with 1 additions and 1 deletions
|
@ -2947,7 +2947,7 @@ Helper function for `describe-package'."
|
|||
(insert " "))
|
||||
(insert "\n"))
|
||||
(when maintainers
|
||||
(when (stringp (car maintainers))
|
||||
(unless (and (listp (car maintainers)) (listp (cdr maintainers)))
|
||||
(setq maintainers (list maintainers)))
|
||||
(package--print-help-section
|
||||
(if (cdr maintainers) "Maintainers" "Maintainer"))
|
||||
|
|
Loading…
Add table
Reference in a new issue