aboutsummaryrefslogtreecommitdiffhomepage
path: root/emacs
diff options
context:
space:
mode:
authorGravatar Jameson Graef Rollins <jrollins@finestructure.net>2012-04-09 11:36:16 -0700
committerGravatar David Bremner <bremner@debian.org>2012-04-12 08:42:55 -0300
commit1d4758e21f2031fa09ce4b150e2cfc2399fc5133 (patch)
treecc37cdeb1ea4211ceff2a8f14d1615d3c5181896 /emacs
parent6409a27b2c835223806e4b14cc219c927856c256 (diff)
emacs: update call in tag-completion function
"search-tags" is deprecated, so use the more modern and supported "search --output=tags".
Diffstat (limited to 'emacs')
-rw-r--r--emacs/notmuch.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/notmuch.el b/emacs/notmuch.el
index f0afa072..38ae0050 100644
--- a/emacs/notmuch.el
+++ b/emacs/notmuch.el
@@ -89,7 +89,7 @@ For example:
(with-output-to-string
(with-current-buffer standard-output
(apply 'call-process notmuch-command nil t
- nil "search-tags" search-terms)))
+ nil "search" "--output=tags" search-terms)))
"\n+" t))
(defun notmuch-select-tag-with-completion (prompt &rest search-terms)