From: Mark Walters Date: Thu, 22 Aug 2013 17:18:00 +0000 (+0100) Subject: Re: [PATCH v3 00/11] contrib: pick: keybindings X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=7f614088a022234416e50a7f31981580cd126593;p=notmuch-archives.git Re: [PATCH v3 00/11] contrib: pick: keybindings --- diff --git a/88/ce0769c96756a7010d459be056760461e2d670 b/88/ce0769c96756a7010d459be056760461e2d670 new file mode 100644 index 000000000..1b3b677c5 --- /dev/null +++ b/88/ce0769c96756a7010d459be056760461e2d670 @@ -0,0 +1,97 @@ +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 7D73F431FC9 + for ; Thu, 22 Aug 2013 10:18:11 -0700 (PDT) +X-Virus-Scanned: Debian amavisd-new at olra.theworths.org +X-Spam-Flag: NO +X-Spam-Score: -1.098 +X-Spam-Level: +X-Spam-Status: No, score=-1.098 tagged_above=-999 required=5 + tests=[DKIM_ADSP_CUSTOM_MED=0.001, FREEMAIL_FROM=0.001, + NML_ADSP_CUSTOM_MED=1.2, RCVD_IN_DNSWL_MED=-2.3] 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 nLqI4A8Chg-v for ; + Thu, 22 Aug 2013 10:18:05 -0700 (PDT) +Received: from mail2.qmul.ac.uk (mail2.qmul.ac.uk [138.37.6.6]) + (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) + (No client certificate requested) + by olra.theworths.org (Postfix) with ESMTPS id 81170431FC2 + for ; Thu, 22 Aug 2013 10:18:05 -0700 (PDT) +Received: from smtp.qmul.ac.uk ([138.37.6.40]) + by mail2.qmul.ac.uk with esmtp (Exim 4.71) + (envelope-from ) + id 1VCYWH-0004cL-7f; Thu, 22 Aug 2013 18:18:01 +0100 +Received: from 93-97-24-31.zone5.bethere.co.uk ([93.97.24.31] helo=localhost) + by smtp.qmul.ac.uk with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.71) + (envelope-from ) + id 1VCYWH-00039h-1b; Thu, 22 Aug 2013 18:18:01 +0100 +From: Mark Walters +To: notmuch@notmuchmail.org +Subject: Re: [PATCH v3 00/11] contrib: pick: keybindings +In-Reply-To: <1377191427-6821-1-git-send-email-markwalters1009@gmail.com> +References: <1377191427-6821-1-git-send-email-markwalters1009@gmail.com> +User-Agent: Notmuch/0.15.2+192~g8222af3 (http://notmuchmail.org) Emacs/23.4.1 + (i486-pc-linux-gnu) +Date: Thu, 22 Aug 2013 18:18:00 +0100 +Message-ID: <87fvu14pbr.fsf@qmul.ac.uk> +MIME-Version: 1.0 +Content-Type: text/plain; charset=us-ascii +X-Sender-Host-Address: 93.97.24.31 +X-QM-SPAM-Info: Sender has good ham record. :) +X-QM-Body-MD5: b4d88038ff4bbc8f7b4b7df86394ce90 (of first 20000 bytes) +X-SpamAssassin-Score: 0.0 +X-SpamAssassin-SpamBar: / +X-SpamAssassin-Report: The QM spam filters have analysed this message to + determine if it is + spam. We require at least 5.0 points to mark a message as spam. + This message scored 0.0 points. Summary of the scoring: + * 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail + provider * (markwalters1009[at]gmail.com) + * 0.0 AWL AWL: From: address is in the auto white-list +X-QM-Scan-Virus: ClamAV says the message is clean +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: Thu, 22 Aug 2013 17:18:11 -0000 + + +Here is the diff diff that I should have included in the previous email + +Sorry about that! + +Mark + +diff --git a/contrib/notmuch-pick/notmuch-pick.el b/contrib/notmuch-pick/notmuch-pick.el +index 3b86a5a..37dc161 100644 +--- a/contrib/notmuch-pick/notmuch-pick.el ++++ b/contrib/notmuch-pick/notmuch-pick.el +@@ -198,7 +198,7 @@ open (if the message pane is closed it does nothing)." + (interactive) + (when (window-live-p notmuch-pick-message-window) + (with-selected-window notmuch-pick-message-window +- (funcall #',func))))) ++ (call-interactively #',func))))) + + (defun notmuch-pick-button-activate (&optional button) + "Activate BUTTON or button at point +@@ -218,7 +218,7 @@ FUNC." + ,(concat "(Close message pane and) " (documentation func t)) + (interactive) + (notmuch-pick-close-message-window) +- (funcall #',func))) ++ (call-interactively #',func))) + + (defvar notmuch-pick-mode-map + (let ((map (make-sparse-keymap)))