aboutsummaryrefslogtreecommitdiff
path: root/git-email-notmuch.el
diff options
context:
space:
mode:
authoryoctocell <public@yoctocell.xyz>2021-01-18 11:48:35 +0100
committeryoctocell <public@yoctocell.xyz>2021-01-18 11:51:23 +0100
commit134d11f280cdb8588bb237c0cd0b7244f64046d5 (patch)
treefc13c7935a759dc9a6f0f77467961350343baf98 /git-email-notmuch.el
parent9cae26478c80f5f7a5b6fbde130a04d0e6114eb8 (diff)
Remove functionality for applying patches
This is better handled by the piem[0] package. [0]: https://git.kyleam.com/piem
Diffstat (limited to 'git-email-notmuch.el')
-rw-r--r--git-email-notmuch.el15
1 files changed, 2 insertions, 13 deletions
diff --git a/git-email-notmuch.el b/git-email-notmuch.el
index 0dccc17..a10789e 100644
--- a/git-email-notmuch.el
+++ b/git-email-notmuch.el
@@ -24,23 +24,12 @@
;;; Commentary:
-;; This library offers some extra functions to make git-email work
-;; better with notmuch.
+;; This library offers sets some variables for git-email to make it
+;; work better with notmuch.
;;; Code:
(require 'git-email)
-(require 'notmuch-show)
-
-;;;###autoload
-(defun git-email-notmuch-apply-patch (project &optional thread)
- "Apply the patch in the notmuch-show buffer using 'git am' in PROJECT.
-
-If THREAD is non-nil or if invoked with a prefix argument, apply the patches
-in the whole thread instead of the current message."
- (interactive (list (git-email--get-project)) "p")
- (let ((default-directory project))
- (notmuch-show-pipe-message thread git-email-apply-patch-command)))
(provide 'git-email-notmuch)
;;; git-email-notmuch.el ends here