[PATCH 3/8] emacs: have tag-completion return all tags for nil input
authorJameson Graef Rollins <jrollins@finestructure.net>
Sun, 8 Apr 2012 00:35:33 +0000 (17:35 +1700)
committerW. Trevor King <wking@tremily.us>
Fri, 7 Nov 2014 17:46:07 +0000 (09:46 -0800)
20/f4d287661e667dbffb3557838d047194e41e1e [new file with mode: 0644]

diff --git a/20/f4d287661e667dbffb3557838d047194e41e1e b/20/f4d287661e667dbffb3557838d047194e41e1e
new file mode 100644 (file)
index 0000000..f0bd5a8
--- /dev/null
@@ -0,0 +1,78 @@
+Return-Path: <jrollins@finestructure.net>\r
+X-Original-To: notmuch@notmuchmail.org\r
+Delivered-To: notmuch@notmuchmail.org\r
+Received: from localhost (localhost [127.0.0.1])\r
+       by olra.theworths.org (Postfix) with ESMTP id E74E3431FD6\r
+       for <notmuch@notmuchmail.org>; Sat,  7 Apr 2012 17:35:52 -0700 (PDT)\r
+X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: -2.3\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=-2.3 tagged_above=-999 required=5\r
+       tests=[RCVD_IN_DNSWL_MED=-2.3] autolearn=disabled\r
+Received: from olra.theworths.org ([127.0.0.1])\r
+       by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
+       with ESMTP id WK766wKLVmLA for <notmuch@notmuchmail.org>;\r
+       Sat,  7 Apr 2012 17:35:52 -0700 (PDT)\r
+Received: from outgoing-mail.its.caltech.edu (outgoing-mail.its.caltech.edu\r
+       [131.215.239.19])\r
+       by olra.theworths.org (Postfix) with ESMTP id C225C431FD7\r
+       for <notmuch@notmuchmail.org>; Sat,  7 Apr 2012 17:35:47 -0700 (PDT)\r
+Received: from fire-doxen.imss.caltech.edu (localhost [127.0.0.1])\r
+       by fire-doxen-postvirus (Postfix) with ESMTP id 91E1B32800B\r
+       for <notmuch@notmuchmail.org>; Sat,  7 Apr 2012 17:35:45 -0700 (PDT)\r
+X-Spam-Scanned: at Caltech-IMSS on fire-doxen by amavisd-new\r
+Received: from finestructure.net (unknown [76.89.193.65])\r
+       (Authenticated sender: jrollins)\r
+       by fire-doxen-submit (Postfix) with ESMTP id 523102E50DD4\r
+       for <notmuch@notmuchmail.org>; Sat,  7 Apr 2012 17:35:43 -0700 (PDT)\r
+Received: by finestructure.net (Postfix, from userid 1000)\r
+       id 00EC87B6; Sat,  7 Apr 2012 17:35:42 -0700 (PDT)\r
+From: Jameson Graef Rollins <jrollins@finestructure.net>\r
+To: Notmuch Mail <notmuch@notmuchmail.org>\r
+Subject: [PATCH 3/8] emacs: have tag-completion return all tags for nil input\r
+Date: Sat,  7 Apr 2012 17:35:33 -0700\r
+Message-Id: <1333845338-22960-4-git-send-email-jrollins@finestructure.net>\r
+X-Mailer: git-send-email 1.7.9.1\r
+In-Reply-To: <1333845338-22960-3-git-send-email-jrollins@finestructure.net>\r
+References: <1333354853-25729-1-git-send-email-jrollins@finestructure.net>\r
+       <1333845338-22960-1-git-send-email-jrollins@finestructure.net>\r
+       <1333845338-22960-2-git-send-email-jrollins@finestructure.net>\r
+       <1333845338-22960-3-git-send-email-jrollins@finestructure.net>\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.13\r
+Precedence: list\r
+List-Id: "Use and development of the notmuch mail system."\r
+       <notmuch.notmuchmail.org>\r
+List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
+       <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
+List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
+List-Post: <mailto:notmuch@notmuchmail.org>\r
+List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
+List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
+       <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
+X-List-Received-Date: Sun, 08 Apr 2012 00:35:53 -0000\r
+\r
+Previously the function would fail if the initial input was nil.  Now\r
+it will return a list of all tags, which obviously makes much more\r
+sense.\r
+---\r
+ emacs/notmuch-tag.el |    2 ++\r
+ 1 files changed, 2 insertions(+), 0 deletions(-)\r
+\r
+diff --git a/emacs/notmuch-tag.el b/emacs/notmuch-tag.el\r
+index 5240d13..b1848b4 100644\r
+--- a/emacs/notmuch-tag.el\r
++++ b/emacs/notmuch-tag.el\r
+@@ -55,6 +55,8 @@ the messages that were tagged"\r
+ `notmuch-read-tag-changes' function.")\r
\r
+ (defun notmuch-tag-completions (&optional search-terms)\r
++  (if (null search-terms)\r
++      (setq search-terms (list "*")))\r
+   (split-string\r
+    (with-output-to-string\r
+      (with-current-buffer standard-output\r
+-- \r
+1.7.9.1\r
+\r