summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorPhilip Kaludercic <philipk@posteo.net>2022-10-16 12:57:51 +0200
committerPhilip Kaludercic <philipk@posteo.net>2022-10-16 13:40:08 +0200
commit3f7e746b514759b66c28d30ead24be08f0e01717 (patch)
tree69879cb3693a1f2ab55e2e83e7c5e1e056c68664 /lisp/emacs-lisp
parent01e45efcd44e92dd259283df0e62653c7c20e9cc (diff)
downloademacs-3f7e746b514759b66c28d30ead24be08f0e01717.tar.gz
emacs-3f7e746b514759b66c28d30ead24be08f0e01717.tar.bz2
emacs-3f7e746b514759b66c28d30ead24be08f0e01717.zip
Delete 'package-contact-maintainer'
* doc/emacs/package.texi: Remove mention. * etc/NEWS: Remove mention. * lisp/emacs-lisp/package.el: Remove the command.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/package.el14
1 files changed, 0 insertions, 14 deletions
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el
index 92f15337671..6c92ff0ba74 100644
--- a/lisp/emacs-lisp/package.el
+++ b/lisp/emacs-lisp/package.el
@@ -2997,7 +2997,6 @@ either a full name or nil, and EMAIL is a valid email address."
"r" #'revert-buffer
"~" #'package-menu-mark-obsolete-for-deletion
"w" #'package-browse-url
- "m" #'package-contact-maintainer
"b" #'package-report-bug
"x" #'package-menu-execute
"h" #'package-menu-quick-help
@@ -4551,19 +4550,6 @@ will be signalled in that case."
(package--print-email-button maint)
(string-trim (substring-no-properties (buffer-string))))))))
-;; TODO: Allow attaching a patch to send directly to the maintainer.
-;; Ideally this should be able to detect the local changes, convert
-;; these into patches.
-(defun package-contact-maintainer (desc)
- "Prepare a message to send to the maintainers of a package.
-DESC must be a `package-desc' object."
- (interactive (list (package--query-desc package-archive-contents))
- package-menu-mode)
- (let ((maint (package-maintainers desc))
- (name (package-desc-name desc))
- (subject (read-string "Subject: ")))
- (compose-mail maint (format "[%s] %s" name subject))))
-
(defun package-report-bug (desc)
"Prepare a message to send to the maintainers of a package.
DESC must be a `package-desc' object."