diff options
author | Philip Kaludercic <philipk@posteo.net> | 2022-10-08 18:22:03 +0200 |
---|---|---|
committer | Philip Kaludercic <philipk@posteo.net> | 2022-10-08 18:22:03 +0200 |
commit | f74d52954bd5c5c9cfde01001a31bb300271ecd0 (patch) | |
tree | 497ba8bcaf50de2609cd5d1bc5a4b47263136c46 /lisp/emacs-lisp | |
parent | a4a825df829670f824de9b15583972f6898e0e18 (diff) | |
download | emacs-f74d52954bd5c5c9cfde01001a31bb300271ecd0.tar.gz emacs-f74d52954bd5c5c9cfde01001a31bb300271ecd0.tar.bz2 emacs-f74d52954bd5c5c9cfde01001a31bb300271ecd0.zip |
* lisp/emacs-lisp/package-vc.el: Autoload 'package-vc-prepare-patch'
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/package-vc.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/package-vc.el b/lisp/emacs-lisp/package-vc.el index 678b4f7a953..e02213ed3fa 100644 --- a/lisp/emacs-lisp/package-vc.el +++ b/lisp/emacs-lisp/package-vc.el @@ -34,8 +34,6 @@ ;; of the package if already installed. ;; - Allow for ELPA specifications to be respected without TODO ;; endangering the user with arbitrary code execution -;; - Allow sending patches to package maintainers TODO -;; * Add `vc-send-patch' to vc.el TODO ;;; Code: @@ -333,6 +331,7 @@ be requested using REV." package-alist #'string=))) +;;;###autoload (defun package-vc-prepare-patch (pkg subject revisions) "Send a patch to the maintainer of a package PKG. SUBJECT and REVISIONS are used passed on to `vc-prepare-patch'. |