From mboxrd@z Thu Jan 1 00:00:00 1970 From: Charles Cave Subject: Re: Date tree capture regexp for headline matching has changed. Date: Tue, 10 May 2011 01:03:05 +0000 (UTC) Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([140.186.70.92]:60868) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QJbM8-0003Zs-CW for emacs-orgmode@gnu.org; Mon, 09 May 2011 21:03:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QJbM7-00060D-4e for emacs-orgmode@gnu.org; Mon, 09 May 2011 21:03:20 -0400 Received: from lo.gmane.org ([80.91.229.12]:47727) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QJbM6-0005zX-UB for emacs-orgmode@gnu.org; Mon, 09 May 2011 21:03:19 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1QJbM4-0003Er-NH for emacs-orgmode@gnu.org; Tue, 10 May 2011 03:03:16 +0200 Received: from 203.166.111.206 ([203.166.111.206]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 10 May 2011 03:03:16 +0200 Received: from charles.cave by 203.166.111.206 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 10 May 2011 03:03:16 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org I compared org-datetre.el from 7.4 to 7.5 and got the following diff output (edited) I can see that the regular expression has become more restricted with the addition of \\w+$" at the end. At least I know what to manually change to make orgmode work the way I want it. 105c105 (this is the org-datetree-find-day-create function 7.4: (let ((re (format "^\\*+[ \t]+%d-%02d-\\([0123][0-9]\\)[ \t\n]" year month)) --- 7.5: (let ((re (format "^\\*+[ \t]+%d-%02d-\\([0123][0-9]\\) \\w+$" year month))