From 18a5151cd118e72f6a9b46fd0834a5488112fa31 Mon Sep 17 00:00:00 2001 From: Philip Kaludercic Date: Sat, 10 Jan 2026 17:18:35 +0100 Subject: [PATCH] Add a default "Subject" for package reviews * lisp/emacs-lisp/package.el (package-review): Set the SUBJECT parameter when calling 'compose-mail'. --- lisp/emacs-lisp/package.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index f2389ce8d9a..ee7731b31a1 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el @@ -793,7 +793,9 @@ attached." ;; prepare mail buffer (let ((tmp-buf (current-buffer))) (compose-mail (with-demoted-errors "Failed to find maintainers: %S" - (package-maintainers pkg-desc))) + (package-maintainers pkg-desc)) + (concat "Emacs Package Review: " + (package-desc-full-name pkg-desc))) (pcase mail-user-agent ('sendmail-user-agent (mail-text)) (_ (message-goto-body)))