From: Mark Walters Date: Mon, 1 Jul 2013 07:54:03 +0000 (+0100) Subject: [PATCH 5/5] contrib: pick: remove unused function X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=18bc6c589b27baffd2a238757c321d3bc231805b;p=notmuch-archives.git [PATCH 5/5] contrib: pick: remove unused function --- diff --git a/ba/67c73f9f6e853bd71799d2557e4b1ab1eacf43 b/ba/67c73f9f6e853bd71799d2557e4b1ab1eacf43 new file mode 100644 index 000000000..e9966144e --- /dev/null +++ b/ba/67c73f9f6e853bd71799d2557e4b1ab1eacf43 @@ -0,0 +1,92 @@ +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 9BE3B431FDA + for ; Mon, 1 Jul 2013 00:54:56 -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 g3obJITe6uXx for ; + Mon, 1 Jul 2013 00:54:51 -0700 (PDT) +Received: from mail-wi0-f171.google.com (mail-wi0-f171.google.com + [209.85.212.171]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) + (No client certificate requested) + by olra.theworths.org (Postfix) with ESMTPS id 7BC29429E3C + for ; Mon, 1 Jul 2013 00:54:20 -0700 (PDT) +Received: by mail-wi0-f171.google.com with SMTP id hj3so2740842wib.10 + for ; Mon, 01 Jul 2013 00:54:19 -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:in-reply-to:references; + bh=rvWUUKNrbfYLy23S9crCDYahe9JF5rHeLXGx2uPE8Bs=; + b=hw5/ZPZvPnpS7yG/bPtAz0Ob1xg5ZCE5WCKXIkiG6SbXUIXBC0MJwr3K3RwYS/MQ3n + /SoaUxOYk/wfE2OWmBAoS999mKauI0gcN1uEelor4qmGa1wmSPwN+Dk8j2Ejno4xz7uO + IsMp1Zgbxnu5XbiyV/zXastuZ+6FI79BBlZ2PbDg7GxYdqfxJwgYMYTvKscQcsW8sexK + ZvXiVfLk+STvyaSI9lr6PKLfO1gSRIqC/bDqjA0TTVkj6APAdzurPyMJrJ6UHQSZMrXY + J5NSw0SzGYQ8u/5pM95BIbVDDcYGoABRDJwWa5uTtaEv7tj02BfSzxNqFqbSDaCPeHHo + dBDg== +X-Received: by 10.180.187.17 with SMTP id fo17mr11197650wic.60.1372665257109; + Mon, 01 Jul 2013 00:54:17 -0700 (PDT) +Received: from localhost (93-97-24-31.zone5.bethere.co.uk. [93.97.24.31]) + by mx.google.com with ESMTPSA id j20sm14477952wie.7.2013.07.01.00.54.16 + for + (version=TLSv1.2 cipher=RC4-SHA bits=128/128); + Mon, 01 Jul 2013 00:54:16 -0700 (PDT) +From: Mark Walters +To: notmuch@notmuchmail.org +Subject: [PATCH 5/5] contrib: pick: remove unused function +Date: Mon, 1 Jul 2013 08:54:03 +0100 +Message-Id: <1372665243-7675-6-git-send-email-markwalters1009@gmail.com> +X-Mailer: git-send-email 1.7.9.1 +In-Reply-To: <1372665243-7675-1-git-send-email-markwalters1009@gmail.com> +References: <1372665243-7675-1-git-send-email-markwalters1009@gmail.com> +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: Mon, 01 Jul 2013 07:54:56 -0000 + +The function notmuch-pick-show-error was used before Austin's improved +error handling. It is now redundant so remove. +--- + contrib/notmuch-pick/notmuch-pick.el | 9 --------- + 1 files changed, 0 insertions(+), 9 deletions(-) + +diff --git a/contrib/notmuch-pick/notmuch-pick.el b/contrib/notmuch-pick/notmuch-pick.el +index 25ea4c2..7c313e7 100644 +--- a/contrib/notmuch-pick/notmuch-pick.el ++++ b/contrib/notmuch-pick/notmuch-pick.el +@@ -764,15 +764,6 @@ Complete list of currently available key bindings: + (insert (format " (process returned %d)" exit-status))) + (insert "\n"))))))))) + +- +-(defun notmuch-pick-show-error (string &rest objects) +- (save-excursion +- (goto-char (point-max)) +- (insert "Error: Unexpected output from notmuch search:\n") +- (insert (apply #'format string objects)) +- (insert "\n"))) +- +- + (defun notmuch-pick-process-filter (proc string) + "Process and filter the output of \"notmuch show\" (for pick)" + (let ((results-buf (process-buffer proc)) +-- +1.7.9.1 +