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 CDD28431FAF for ; Sun, 15 Sep 2013 01:19:42 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: 0.201 X-Spam-Level: X-Spam-Status: No, score=0.201 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, 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 HZIz7kSDdJGz for ; Sun, 15 Sep 2013 01:19:37 -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 2ECF8431FAE for ; Sun, 15 Sep 2013 01:19:37 -0700 (PDT) Received: by mail-wg0-f46.google.com with SMTP id k14so2509132wgh.13 for ; Sun, 15 Sep 2013 01:19:36 -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; bh=OL42/qebErswpTzsRD37fppqbw/0qCpamT2vMeXCXGI=; b=fpCPwbX8cp8+rBmGhP4uob1NkGQxpURbxHD3FdA0d4CSTr++3YaL2oAoBxmmWKSyR/ oSuAgIgBe0NbbzB/bdmTfpNpDG3S0rQ67T1w8BaoSJcIlLF4VbTikteu/iNy1Ma+dzan pNRKQXk7dsbN7HwSuYpWMyj3jqTVgInsDk6RAJMmwdJc6aMGireFKCk8Hz/QdZlQ7k/C uu11L7PAT+wdTpbhUuJqC2gzgEJWSm0RHctUkkF5WQ5iBberxGbe+BILIeIlclumdqdg E+fH2U1UgkMVHkf2AAsqAsgvhPbioUvT7oe+uzniOlFmv+43wf7pry8/ICCYEgUjAw5J mpcg== X-Received: by 10.180.189.205 with SMTP id gk13mr8898349wic.12.1379233176136; Sun, 15 Sep 2013 01:19:36 -0700 (PDT) Received: from localhost (93-97-24-31.zone5.bethere.co.uk. [93.97.24.31]) by mx.google.com with ESMTPSA id b13sm14879456wic.9.1969.12.31.16.00.00 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Sun, 15 Sep 2013 01:19:35 -0700 (PDT) From: Mark Walters To: notmuch@notmuchmail.org Subject: [PATCH] contrib: pick: bugfix use of mini-buffer history Date: Sun, 15 Sep 2013 09:19:33 +0100 Message-Id: <1379233173-9812-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, 15 Sep 2013 08:19:42 -0000 pick was meant to use the same mini-buffer history but this failed because the interactive definition took place before the use search mini-buffer history part. Remove the interactive prompt to ensure the correct history is used. --- contrib/notmuch-pick/notmuch-pick.el | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/contrib/notmuch-pick/notmuch-pick.el b/contrib/notmuch-pick/notmuch-pick.el index 01ca4bd..ad85d03 100644 --- a/contrib/notmuch-pick/notmuch-pick.el +++ b/contrib/notmuch-pick/notmuch-pick.el @@ -948,7 +948,7 @@ The arguments are: BUFFER-NAME: the name of the buffer to show the pick tree. If it is nil \"*notmuch-pick\" followed by QUERY is used. OPEN-TARGET: If TRUE open the target message in the message pane." - (interactive "sNotmuch pick: ") + (interactive) (if (null query) (setq query (notmuch-read-query "Notmuch pick: "))) (let ((buffer (get-buffer-create (generate-new-buffer-name -- 1.7.9.1