* 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)
(cherry picked from commit
acfb2c6163b60507801fb8666129925e793394c9)
(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"))