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 62DA8431FBF for ; Tue, 24 Nov 2009 11:41:28 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org 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 G-fEI0kFy7Ja for ; Tue, 24 Nov 2009 11:41:27 -0800 (PST) Received: from fmsmga102.fm.intel.com (mga10.intel.com [192.55.52.92]) by olra.theworths.org (Postfix) with ESMTP id AA3C1431FBC for ; Tue, 24 Nov 2009 11:41:27 -0800 (PST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga102.fm.intel.com with ESMTP; 24 Nov 2009 11:37:30 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.47,280,1257148800"; d="scan'208";a="750047982" Received: from unknown (HELO localhost.localdomain) ([10.255.16.197]) by fmsmga001.fm.intel.com with ESMTP; 24 Nov 2009 11:47:50 -0800 From: Chris Wilson To: notmuch@notmuchmail.org Date: Tue, 24 Nov 2009 19:41:20 +0000 Message-Id: <1259091680-29598-1-git-send-email-chris@chris-wilson.co.uk> X-Mailer: git-send-email 1.6.5.3 Subject: [notmuch] [PATCH] notmuch-new: Remove the tiresome joke from the output. X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.12 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: Tue, 24 Nov 2009 19:41:28 -0000 As I see this every time I poll for new mail, the joke becomes very old very quickly. The other instances of "not much" are shown much less often and have a much more natural style, this one however feels forced, impairing the humorous effect. Signed-off-by: Chris "the critic" Wilson --- notmuch-new.c | 4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/notmuch-new.c b/notmuch-new.c index e32b92a..3cde3a7 100644 --- a/notmuch-new.c +++ b/notmuch-new.c @@ -483,12 +483,10 @@ notmuch_new_command (void *ctx, int argc, char *argv[]) } } if (add_files_state.added_messages) { - printf ("Added %d new %s to the database (not much, really).\n", + printf ("Added %d new %s to the database.\n", add_files_state.added_messages, add_files_state.added_messages == 1 ? "message" : "messages"); - } else { - printf ("No new mail---and that's not much.\n"); } if (elapsed > 1 && ! add_files_state.saw_read_only_directory) { -- 1.6.5.3