From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rainer Stengele Subject: Re: Release 6.30 Date: Sun, 06 Sep 2009 19:21:39 +0200 Message-ID: <4AA3EFA3.30100@online.de> References: <6EB1B1C1-9DD4-434B-9D48-1027CD60F4A7@gmail.com> <4AA0E606.6020001@online.de> <78125963-E636-4D71-B87D-5F2FBEFCEBD8@gmail.com> <4AA270F4.1060709@online.de> <82F9CF07-EA77-46C2-90F3-368ACCD26A41@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MkLR0-0003NR-7X for emacs-orgmode@gnu.org; Sun, 06 Sep 2009 13:21:50 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MkLQv-0003HT-CM for emacs-orgmode@gnu.org; Sun, 06 Sep 2009 13:21:49 -0400 Received: from [199.232.76.173] (port=46234 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MkLQv-0003HN-7n for emacs-orgmode@gnu.org; Sun, 06 Sep 2009 13:21:45 -0400 Received: from moutng.kundenserver.de ([212.227.126.187]:55632) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MkLQu-0001ru-Fb for emacs-orgmode@gnu.org; Sun, 06 Sep 2009 13:21:44 -0400 In-Reply-To: <82F9CF07-EA77-46C2-90F3-368ACCD26A41@gmail.com> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Carsten Dominik Cc: org-mode Mailinglist Carsten Dominik schrieb: > Hi Rainer, > > On Sep 5, 2009, at 4:08 PM, Rainer Stengele wrote: > >> Hi Carsten, >> >> excellent, thanks a lot! >> >> I now have have started with this regexp: >> >> ... >> '(org-agenda-entry-text-exclude-regexps (quote ("^.*- State >> \"DONE\".*\n" "^.*erzeugt:.*\n"))) >> ... >> >> >> which works except in cases like these: >> >> ... >> - State "DONE" [2008-02-24 So 20:52] >> - State "DONE" [2008-02-24 So 20:52] >> erzeugt: [2008-01-12 Sa 21:40] >> ... >> >> or >> >> ... >> - State "DONE" [2008-02-24 So 20:51] >> - State "DONE" [2008-02-24 So 20:51] >> - State "DONE" [2008-02-24 So 20:51] >> - State "DONE" [2008-02-24 So 20:51] >> - State "DONE" [2008-02-24 So 20:50] >> - State "DONE" [2008-02-24 So 20:50] >> erzeugt: [2008-01-12 Sa 21:40] >> ... >> >> >> The agenda weeds out alle lines except the last line "erzeugt ...". > > The reason for this was that the last line did not have a newline after it, > because that is being removed before the regular expressions are > applied. I have changed this now, so that the \n is still present. > Another fix would have been to make the final newline optional by > adding "?" to the regexp. > > - Carsten Carsten, it works now! Thanx for being the fastest maintainer I know at all! It's plain fun to continue to see org getting "better" all the time. - Rainer