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 E0E36421197 for ; Tue, 17 Jan 2012 12:58:01 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.799 X-Spam-Level: X-Spam-Status: No, score=-0.799 tagged_above=-999 required=5 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.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 3XIWe-lrAy+f for ; Tue, 17 Jan 2012 12:58:01 -0800 (PST) Received: from mail-qy0-f181.google.com (mail-qy0-f181.google.com [209.85.216.181]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 5AB68429E5F for ; Tue, 17 Jan 2012 12:58:01 -0800 (PST) Received: by qcqw6 with SMTP id w6so2967788qcq.26 for ; Tue, 17 Jan 2012 12:58:00 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=from:to:subject:in-reply-to:references:user-agent:date:message-id :mime-version:content-type; bh=6JN1/UG2OcNqRLckC6cgb48Kpu3yz8d5JrRznYnOg9g=; b=pg4T9USBs5dn4UBXO4CjMiFEL3CBaft7bVPiErz1uTXyvQL1IGxHGmN4g6PIWJM4lY M+3XZxLwR7B2TInROqm4/qmfWw6XGO6/gjnn7u2UONggbCuBY9LfVne/Kv7gkCfsNRtW UrTGx5cxQeapvn7sKdD8Q24NDPbi3WjtZnyx0= Received: by 10.229.75.142 with SMTP id y14mr6876907qcj.16.1326833880600; Tue, 17 Jan 2012 12:58:00 -0800 (PST) Received: from localhost (luw017.wlan.gapsa.upenn.edu. [128.91.230.146]) by mx.google.com with ESMTPS id a19sm45787924qau.21.2012.01.17.12.57.59 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 17 Jan 2012 12:57:59 -0800 (PST) From: Aaron Ecay To: Jameson Graef Rollins , Notmuch Mail Subject: Re: [PATCH 1/6] emacs: break up notmuch-show-archive-thread-internal into two generally useful functions In-Reply-To: <87sjjeytfx.fsf@servo.finestructure.net> References: <871uqy19yo.fsf@servo.finestructure.net> <1326823531-14549-1-git-send-email-jrollins@finestructure.net> <87sjjeytfx.fsf@servo.finestructure.net> User-Agent: Notmuch/0.11+62~ge41b0d3 (http://notmuchmail.org) Emacs/24.0.92.1 (i386-apple-darwin10.8.0) Date: Tue, 17 Jan 2012 15:57:58 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain 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, 17 Jan 2012 20:58:02 -0000 On Tue, 17 Jan 2012 12:17:54 -0800, Jameson Graef Rollins wrote: > > We're not currently in the habit of adding doc strings for > non-interactive programs. Do we need to go down that route? It is handy for developers, since the usual documentation facilities (describe-function, apropos, ...) will then work for that function too. Emacs documentation recommends(-ish) this: ,----[ Elisp manual Section D.6 ] | An internal variable or subroutine of a Lisp program might as well | have a documentation string. In earlier Emacs versions, you could | save space by using a comment instead of a documentation string, | but that is no longer the case--documentation strings now take up | very little space in a running Emacs. `---- -- Aaron Ecay