]> git.eshelyaron.com Git - emacs.git/commitdiff
; * admin/admin.el (cusver-scan): remove broken warning
authorMattias Engdegård <mattiase@acm.org>
Tue, 30 May 2023 09:14:01 +0000 (11:14 +0200)
committerMattias Engdegård <mattiase@acm.org>
Tue, 30 May 2023 15:46:06 +0000 (17:46 +0200)
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.

admin/admin.el

index 90f810b79c6f3e6f820e4163d6afa89698c94aad..1f4c6986b0eead3ae9c0d810afad53d7b1038743 100644 (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))