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 B88AE431FC0 for ; Sun, 13 Dec 2009 21:42: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 On8lASvhdrbn for ; Sun, 13 Dec 2009 21:42:28 -0800 (PST) X-Greylist: delayed 48891 seconds by postgrey-1.32 at olra; Sun, 13 Dec 2009 21:42:28 PST Received: from cp20.secserverpros.com (cp20.secserverpros.com [67.220.217.187]) by olra.theworths.org (Postfix) with ESMTP id 0843C431FAE for ; Sun, 13 Dec 2009 21:42:27 -0800 (PST) Received: from 61-228-164-59.dynamic.hinet.net ([61.228.164.59] helo=kanru.info) by cp20.secserverpros.com with esmtps (TLSv1:AES256-SHA:256) (Exim 4.69) (envelope-from ) id 1NK3hR-0004jV-Op for notmuch@notmuchmail.org; Mon, 14 Dec 2009 05:42:26 +0000 Received: from kanru (uid 1000) (envelope-from kanru@kanru.info) id 2388 by kanru.info (DragonFly Mail Agent) Mon, 14 Dec 2009 13:41:52 +0800 From: Kan-Ru Chen To: notmuch@notmuchmail.org Date: Mon, 14 Dec 2009 13:41:33 +0800 Message-Id: <1260769295-12924-3-git-send-email-kanru@kanru.info> X-Mailer: git-send-email 1.6.5.5 In-Reply-To: <1260769295-12924-2-git-send-email-kanru@kanru.info> References: <1260769295-12924-1-git-send-email-kanru@kanru.info> <1260769295-12924-2-git-send-email-kanru@kanru.info> X-ACL-Warn: { X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - cp20.secserverpros.com X-AntiAbuse: Original Domain - notmuchmail.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - kanru.info X-Source: X-Source-Args: X-Source-Dir: Subject: [notmuch] [PATCH 2/4] emacs: Connect two hunk of citations if only blank separated 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: Mon, 14 Dec 2009 05:42:28 -0000 Also eats extra blanks between citations and content, which may not be desired behavior. Signed-off-by: Kan-Ru Chen --- notmuch.el | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/notmuch.el b/notmuch.el index 5823094..1722474 100644 --- a/notmuch.el +++ b/notmuch.el @@ -603,7 +603,7 @@ which this thread was originally shown." (move-to-column depth) (if (looking-at citation) (progn - (while (looking-at citation) + (while (looking-at (concat citation "\\|^$")) (forward-line) (move-to-column depth)) (end-of-line 0) -- 1.6.5.5