From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?iso-8859-1?Q?Vincent_Bela=EFche?= Subject: =?UTF-8?B?RXhwb3J0IGlzc3VlIG9mIFVSTCB3aGVuIHRoZSB0ZXh0IGJlZ2lu?= =?UTF-8?B?cyB3aXRoIGEgZGF0ZeKAjw==?= Date: Thu, 13 Jan 2011 23:00:30 +0100 Message-ID: <80hbdco45d.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from [140.186.70.92] (port=40856 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PdVGe-0005aX-19 for emacs-orgmode@gnu.org; Thu, 13 Jan 2011 17:04:01 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PdVF5-00007j-HH for emacs-orgmode@gnu.org; Thu, 13 Jan 2011 17:02:04 -0500 Received: from smtp05.smtpout.orange.fr ([80.12.242.127]:42803 helo=smtp.smtpout.orange.fr) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PdVF5-00007Y-8W for emacs-orgmode@gnu.org; Thu, 13 Jan 2011 17:02:03 -0500 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: Org mode Cc: =?iso-8859-1?Q?Vincent_Bela=EFche?= Hello, I have made some invesitgation, and I found that the problem happens in the call of function org-export-as-html. On line 522 of this function, this is the following line: (while (string-match org-bracket-link-analytic-regexp++ line start) When the line containing the link is processed, the variable line is equal to the following "[[file://localhost/c%3A/msys/1.0/temp/example.html][2011-01-01 example]]" In that case the expression (string-match org-bracket-link-analytic-regexp++ line start) returns nil. Now assume that I modify slightly the line so that there is not longer any ISO timestamp in it, like this (I just replaced the first `-' by a `+', so the string is : "[[file://localhost/c%3A/msys/1.0/temp/example.html][2011+01-01 example]]" ) with that change the expression (string-match org-bracket-link-analytic-regexp++ line start) returns 0. My understanding is that the bug resides in this very expression. VBR, Vincent.