[PATCH 3/3] emacs: have tag-completion return all tags for nil input
Jameson Graef Rollins
jrollins at finestructure.net
Mon Apr 9 11:36:18 PDT 2012
Previously the function would fail if the initial input was nil. Now
it will return a list of all tags, which obviously makes much more
sense.
---
emacs/notmuch.el | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/emacs/notmuch.el b/emacs/notmuch.el
index 8b48399..ba833e6 100644
--- a/emacs/notmuch.el
+++ b/emacs/notmuch.el
@@ -85,6 +85,8 @@ For example:
`notmuch-read-tag-changes' function.")
(defun notmuch-tag-completions (&optional search-terms)
+ (if (null search-terms)
+ (setq search-terms (list "*")))
(split-string
(with-output-to-string
(with-current-buffer standard-output
--
1.7.9.1
More information about the notmuch
mailing list