emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Orgmode] [PATCH] Fix :include bug in org-publish


From: Julien Barnier
Subject: [Orgmode] [PATCH] Fix :include bug in org-publish
Date: Mon, 16 Aug 2010 14:11:01 +0000 (UTC)
User-agent: Loom/3.14 (http://gmane.org/)

Hi all,

Today I just noticed a small bug in org-publish. As the manual says, the
:include parameter in a project specification should be a list of files, but it
is treated as a regexp in (org-publish-get-project-from-filename), thus making
it impossible to use org-publish-current-file or org-publish-current-project if
an :include directive is present.

The small attached patch should fix this.

Sincerely,

Julien

* lisp/org-publish.el (org-publish-get-project-from-filename):
Consider :include as a list, not a regexp.
---
 lisp/org-publish.el |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/lisp/org-publish.el b/lisp/org-publish.el
index 6324eba..0656f8b 100644
--- a/lisp/org-publish.el
+++ b/lisp/org-publish.el
@@ -471,7 +471,13 @@ matching filenames."
                 (i (plist-get (cdr prj) :include))
                 (xm (concat "^" b (if r ".+" "[^/]+") "\\.\\(" x "\\)$")))
            (when (or
-                  (and i (string-match i filename))
+                  (and 
+                   i 
+                   (member filename 
+                           (mapcar 
+                            (lambda (arg) 
+                              (concat (file-name-as-directory b) arg))
+                            i)))
                   (and
                    (not (and e (string-match e filename)))
                    (string-match xm filename)))
-- 
1.7.1





reply via email to

[Prev in Thread] Current Thread [Next in Thread]