From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Goaziou Subject: Re: Issue with commit 6062f9e in ox-publish Date: Tue, 25 Mar 2014 10:08:42 +0100 Message-ID: <87lhvyk5lx.fsf@gmail.com> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54884) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WSNLK-0001sD-EL for emacs-orgmode@gnu.org; Tue, 25 Mar 2014 05:08:28 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WSNLC-0004QD-KY for emacs-orgmode@gnu.org; Tue, 25 Mar 2014 05:08:22 -0400 Received: from mail-wg0-x233.google.com ([2a00:1450:400c:c00::233]:42285) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WSNLC-0004Pp-Dq for emacs-orgmode@gnu.org; Tue, 25 Mar 2014 05:08:14 -0400 Received: by mail-wg0-f51.google.com with SMTP id k14so114439wgh.22 for ; Tue, 25 Mar 2014 02:08:13 -0700 (PDT) In-Reply-To: (steckerhalter's message of "Tue, 25 Mar 2014 08:57:21 +0100") 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: steckerhalter Cc: emacs-orgmode@gnu.org Hello, steckerhalter writes: > This change: > > @@ -1169,5 +1168,10 @@ the file including them will be republished as well." > - (while (re-search-forward > - "^#\\+INCLUDE:[ \t]+\"\\([^\t\n\r\"]*\\)\"[ \t]*.*$" nil t) > - (let* ((included-file (expand-file-name (match-string 1)))) > - (add-to-list 'included-files-ctime > - (org-publish-cache-ctime-of-src included-file) t)))) > + (while (re-search-forward "^[ \t]*#\\+INCLUDE:" nil t) > + (let* ((element (org-element-at-point)) > + (included-file > + (and (eq (org-element-type element) 'keyword) > + (org-string-nw-p (org-element-property :value element))))) > + (when included-file > + (add-to-list 'included-files-ctime > + (org-publish-cache-ctime-of-src > + (expand-file-name included-file)) > + t))))) > > causes an error for me: > > org-publish-cache-ctime-of-src: No such file: > "/home/user/org-mode-blog/posts/"../elisp/org-mode-blog-setup.el" src > emacs-lisp" > > When I revert the commit I do not get an error. > > Probably it's just that it does not strip the "src emacs-lisp" part > now? Good catch. This should be fixed. Thank you for reporting it. Regards, -- Nicolas Goaziou