From bebb7597a79df0c1d93cafcc6cccfacddd40d6be Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 25 Mar 2014 10:05:27 +0100 Subject: [PATCH] ox-publish: Fix small bug * lisp/ox-publish.el (org-publish-cache-file-needs-publishing): Correctly extract filename. This bug was introduced in 6062f9ea72732067036d9d959f1627ece0a9056e. Thanks to steckerhalter for reporting it. --- lisp/ox-publish.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lisp/ox-publish.el b/lisp/ox-publish.el index ad8eb329d..bad8138a8 100644 --- a/lisp/ox-publish.el +++ b/lisp/ox-publish.el @@ -1169,7 +1169,9 @@ the file including them will be republished as well." (let* ((element (org-element-at-point)) (included-file (and (eq (org-element-type element) 'keyword) - (org-string-nw-p (org-element-property :value element))))) + (string-match "^\\(\".+?\"\\|\\S-+\\)" + (org-element-property :value element)) + (org-match-string-no-properties (match-string 1))))) (when included-file (add-to-list 'included-files-ctime (org-publish-cache-ctime-of-src