aboutsummaryrefslogtreecommitdiffhomepage
path: root/emacs
diff options
context:
space:
mode:
authorGravatar Jameson Graef Rollins <jrollins@finestructure.net>2012-04-14 11:52:54 -0700
committerGravatar David Bremner <bremner@debian.org>2012-04-29 17:43:03 -0300
commit904a8070889c36b5dc7169a82f20cc354cc0f867 (patch)
tree7592f99b1b1fad32f730ec41fd6e84d57adc03ce /emacs
parentc1bcf5f8c0874a38b27bdd38b4c74d248d32c2f6 (diff)
emacs: eliminate search-tag-thread in favor of just search-tag
notmuch-search-tag-thread is now completely redundant with notmuch-search-tag so we eliminate it to simplify the interface.
Diffstat (limited to 'emacs')
-rw-r--r--emacs/notmuch.el8
1 files changed, 1 insertions, 7 deletions
diff --git a/emacs/notmuch.el b/emacs/notmuch.el
index a069492b..c6236db2 100644
--- a/emacs/notmuch.el
+++ b/emacs/notmuch.el
@@ -517,12 +517,6 @@ and will also appear in a buffer named \"*Notmuch errors*\"."
(forward-line 1))
output)))
-(defun notmuch-search-tag-thread (&rest tag-changes)
- "Change tags for the currently selected thread.
-
-See `notmuch-search-tag-region' for details."
- (apply 'notmuch-search-tag-region (point) (point) tag-changes))
-
(defun notmuch-search-tag-region (beg end &optional tag-changes)
"Change tags for threads in the given region."
(let ((search-string (notmuch-search-find-thread-id-region-search beg end)))
@@ -560,7 +554,7 @@ See `notmuch-tag' for information on the format of TAG-CHANGES."
This function advances the next thread when finished."
(interactive)
- (notmuch-search-tag-thread "-inbox")
+ (notmuch-search-tag '("-inbox"))
(notmuch-search-next-thread))
(defvar notmuch-search-process-filter-data nil