mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-23 21:37:34 +00:00
; Fix type error in 'package-maintainers'
* lisp/emacs-lisp/package.el (package-maintainers): Pass the email address to 'ietf-drums-parse-address' (Bug#59676).
This commit is contained in:
parent
ee32ae7c36
commit
cc6efa7992
1 changed files with 1 additions and 1 deletions
|
|
@ -4549,7 +4549,7 @@ will be signaled in that case."
|
||||||
(user-error "Package `%s' has no explicit maintainer" name))
|
(user-error "Package `%s' has no explicit maintainer" name))
|
||||||
((and (not (progn
|
((and (not (progn
|
||||||
(require 'ietf-drums)
|
(require 'ietf-drums)
|
||||||
(ietf-drums-parse-address maint)))
|
(ietf-drums-parse-address (cdr maint))))
|
||||||
(null no-error))
|
(null no-error))
|
||||||
(user-error "Package `%s' has no maintainer address" name))
|
(user-error "Package `%s' has no maintainer address" name))
|
||||||
((not (null maint))
|
((not (null maint))
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue