1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-05 11:45:45 +00:00

; * admin/admin.el (cusver-scan): remove broken warning

The call to `format-message` had no effect in itself, but it turns out
that actually emitting the result just results in useless warnings so
we remove it entirely.
This commit is contained in:
Mattias Engdegård 2023-05-30 11:14:01 +02:00
parent 9ae212fb1e
commit 845f97d475

View File

@ -1038,8 +1038,7 @@ If optional argument OLD is non-nil, also scan for `defvar's."
(and grp
(setq grp (car (cdr-safe grp))) ; (quote foo) -> foo
(setq ver (assq grp glist))))
(setq alist (cons (cons var ver) alist))))
(if form (format-message "Malformed defcustom: `%s'" form)))))
(setq alist (cons (cons var ver) alist)))))))
(message "%sdone" m)
alist))