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 41328431FBC for ; Tue, 24 Jan 2012 10:44:39 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: 0 X-Spam-Level: X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none] 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 zQG8MBL+r94a for ; Tue, 24 Jan 2012 10:44:38 -0800 (PST) Received: from guru.guru-group.fi (guru-group.fi [87.108.86.66]) by olra.theworths.org (Postfix) with ESMTP id 8762D431FB6 for ; Tue, 24 Jan 2012 10:44:38 -0800 (PST) Received: by guru.guru-group.fi (Postfix, from userid 501) id 03A0F68056; Tue, 24 Jan 2012 20:44:40 +0200 (EET) From: Tomi Ollila To: Jameson Graef Rollins , Notmuch Mail Subject: Re: [PATCH 3/6] emacs: add message archiving functions In-Reply-To: <1327307665-23387-3-git-send-email-jrollins@finestructure.net> References: <87pqea24z0.fsf@servo.finestructure.net> <1327307665-23387-1-git-send-email-jrollins@finestructure.net> <1327307665-23387-2-git-send-email-jrollins@finestructure.net> <1327307665-23387-3-git-send-email-jrollins@finestructure.net> User-Agent: Notmuch/0.11+99~g0528eb4 (http://notmuchmail.org) Emacs/23.3.1 (x86_64-unknown-linux-gnu) X-Face: HhBM'cA~ MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii 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: Tue, 24 Jan 2012 18:44:39 -0000 On Mon, 23 Jan 2012 00:34:22 -0800, Jameson Graef Rollins wrote: > This adds two new message archiving functions that parallel the thread > archiving functions: notmuch-show-archive-message{,-then-next}. The > former also takes a prefix argument to unarchive the message (ie. put > back in inbox). > --- LGTM, except... > +(defun notmuch-show-archive-message-then-next () > + "Archive the current message, then show next thread from search." > + (interactive) > + (notmuch-show-archive-message) > + (notmuch-show-next-open-message)) > + It goes to next open message but docstring says show nexr thread from search. Tomi