Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 67A8C431FAF for ; Sat, 25 May 2013 23:41:54 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: 2.7 X-Spam-Level: ** X-Spam-Status: No, score=2.7 tagged_above=-999 required=5 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FREEMAIL_ENVFROM_END_DIGIT=1, FREEMAIL_FROM=0.001, FREEMAIL_REPLY=2.499, RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id sW6L-5cO6gzF for ; Sat, 25 May 2013 23:41:47 -0700 (PDT) Received: from mail-wg0-f46.google.com (mail-wg0-f46.google.com [74.125.82.46]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 9C947431FAE for ; Sat, 25 May 2013 23:41:47 -0700 (PDT) Received: by mail-wg0-f46.google.com with SMTP id l18so3499064wgh.1 for ; Sat, 25 May 2013 23:41:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer; bh=I8N/SAOKpjmI5AFiNGoCZ9W7OlqrrLUbpkeGG5zDRIs=; b=AkkxFb/ot4LvQgT33HH15SKZcbOEu+o5fu/Ya2Lxo7FApvL0nMNZG7VTibhuuhHxwa vllKPL9E2V5E3fTXQwc/YZd+x8CFT2V9NHdjEUBwuTrAjPWnJVLS75anRrj7y+rsV9C/ RTu7kMlqc2yN/b1U1sj9AznJnh83+SyKSDY+POze22mB2goXQm+GHRDLYu6HCiLOTc2l 6EU78sbNnDl8tIEizcvS7gKZOIS9jyf4pWES/Y/gR7eMq+OvyxuOMldd2faKPBUG/pF1 a6gb31gopiliTiDMLIGKDZcHbpeijcD+9dTO9Yr+e2eHXtcfdMt97VrweIh78rD9Sz7k MaGQ== X-Received: by 10.180.105.161 with SMTP id gn1mr4116702wib.5.1369550504866; Sat, 25 May 2013 23:41:44 -0700 (PDT) Received: from localhost (93-97-24-31.zone5.bethere.co.uk. [93.97.24.31]) by mx.google.com with ESMTPSA id dj7sm9027252wib.6.2013.05.25.23.41.43 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Sat, 25 May 2013 23:41:44 -0700 (PDT) From: Mark Walters To: notmuch@notmuchmail.org Subject: [PATCH] contrib: pick: if no target specified go to first matching message Date: Sun, 26 May 2013 07:40:58 +0100 Message-Id: <1369550458-30562-1-git-send-email-markwalters1009@gmail.com> X-Mailer: git-send-email 1.7.9.1 X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 May 2013 06:41:54 -0000 --- Now that all the plumbing (id:1357814477-1348-1-git-send-email-markwalters1009@gmail.com) is in place this is easy. Best wishes Mark contrib/notmuch-pick/notmuch-pick.el | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/contrib/notmuch-pick/notmuch-pick.el b/contrib/notmuch-pick/notmuch-pick.el index 128fabf..b7e9515 100644 --- a/contrib/notmuch-pick/notmuch-pick.el +++ b/contrib/notmuch-pick/notmuch-pick.el @@ -652,8 +652,10 @@ unchanged ADDRESS if parsing fails." (save-excursion (goto-char (point-max)) (notmuch-pick-insert-msg msg)) - (let ((msg-id (notmuch-id-to-query (plist-get msg :id)))) - (when (string= msg-id notmuch-pick-target-msg) + (let ((msg-id (notmuch-id-to-query (plist-get msg :id))) + (target notmuch-pick-target-msg)) + (when (or (and (not target) (plist-get msg :match)) + (string= msg-id target)) (setq notmuch-pick-target-msg "found") (goto-char (point-max)) (forward-line -1)))) -- 1.7.9.1