From mboxrd@z Thu Jan 1 00:00:00 1970 From: John Wiegley Subject: Re: Autoarchiving done entries Date: Sun, 02 Sep 2007 23:12:57 -0400 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IS2Nu-0002FA-Pi for emacs-orgmode@gnu.org; Sun, 02 Sep 2007 23:13:54 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IS2Ns-0002Ey-Bq for emacs-orgmode@gnu.org; Sun, 02 Sep 2007 23:13:53 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IS2Ns-0002Ev-7M for emacs-orgmode@gnu.org; Sun, 02 Sep 2007 23:13:52 -0400 Received: from fyodor.hcoop.net ([64.20.38.170]) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1IS2Ns-0005c1-0u for emacs-orgmode@gnu.org; Sun, 02 Sep 2007 23:13:52 -0400 Received: from [72.22.155.27] (helo=Hermes.local) by fyodor.hcoop.net with esmtpsa (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.63) (envelope-from ) id 1IS2P9-0007lq-2B for emacs-orgmode@gnu.org; Sun, 02 Sep 2007 23:15:12 -0400 In-Reply-To: (Carsten Dominik's message of "Sun\, 2 Sep 2007 09\:30\:56 +0200") 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: emacs-orgmode@gnu.org John Wiegley wort: >> (concat "\\* " (regexp-opt org-done-keywords) " ") nil t) This part here should read instead: (concat "\\* \\(" (regexp-opt org-done-keywords) "\\) ") nil t) John