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 E9616431FC0; Fri, 27 Nov 2009 20:04:02 -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 Y9RgES791PTL; Fri, 27 Nov 2009 20:04:02 -0800 (PST) Received: from cworth.org (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 12BF5431FAE; Fri, 27 Nov 2009 20:04:02 -0800 (PST) From: Carl Worth To: Tassilo Horn In-Reply-To: <87d4349yhz.fsf@thinkpad.tsdh.de> References: <87tywlji10.fsf@thinkpad.tsdh.de> <87k4xdq7ys.fsf@yoom.home.cworth.org> <87d4349yhz.fsf@thinkpad.tsdh.de> Date: Fri, 27 Nov 2009 20:03:47 -0800 Message-ID: <87ocmnjnx8.fsf@yoom.home.cworth.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: notmuch@notmuchmail.org Subject: Re: [notmuch] [PATCH] Return unpropertized strings for filename and message-id 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: Sat, 28 Nov 2009 04:04:03 -0000 On Fri, 27 Nov 2009 09:13:12 +0100, Tassilo Horn wrote: > I guess it won't be the last one. There are some byte-compiler warnings > with notmuch.el, that I'd like to remove. Great! I'll look forward to more from you? > So an email looking like this would be correct? Almost. The place where you want to insert the explanatory text is between the "---" marker and the line starting with "diff". See below. > Normally it causes almost never any problems, but IMO it's just bad > style. When a user wants to get the Message-id, he most probably only > wants to do some calculations on that (e.g. jump to that message in Gnus > or rmail), or insert it somewhere else. In the first case, text > properties aren't needed, and in the second case, it's most unlikely > that he wants to have exactly the same properties there, especially if > there are properties different from faces. Thanks for the explanation. The above paragraph would have been *perfect* as the commit message. > But instead of mailing each first-time committer a mail, you might > consider putting those guidelines on the notmuch homepage. :-) Yes, there's definitely a bunch of places that would be better to put these things, (like in a HACKING file in the repository). But sometimes it's just so *easy* to write email. I will try to put things into better places before I repeat myself on the list too much. But anyone can feel free to help by taking text I've written in email and sending it back as patches to explanatory files like HACKING. And eventually I'll fix the website so that other people can contribute to it as well. Thanks again for all your help, -Carl --8<---------------cut here---------------start------------->8--- From: Tassilo Horn To: Carl Worth Cc: notmuch@notmuchmail.org Date: Fri, 27 Nov 2009 08:54:41 +0100 Subject: [PATCH] Remove preprocessor code Don't define RUNNING_ON_VALGRIND, so that notmuch is probably broken. --- Hi Carl, this patch is completely wrong. Please don't apply it. :-) And thanks again for the great work. Bye, Tassilo debugger.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/debugger.c b/debugger.c index e8b9378..f32cdc9 100644 --- a/debugger.c +++ b/debugger.c @@ -24,8 +24,6 @@ #if HAVE_VALGRIND #include -#else -#define RUNNING_ON_VALGRIND 0 #endif notmuch_bool_t --8<---------------cut here---------------end--------------->8---