From 31431aefbcfd0cab759b1292216fda4ef93f28b0 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 24 Sep 2012 22:46:56 +0200 Subject: [PATCH] org-e-publish: Require appropriate back-ends when publishing * contrib/lisp/org-e-publish.el (org-e-publish-org-to-latex, org-e-publish-org-to-pdf, org-e-publish-org-to-html, org-e-publish-org-to-ascii): Require appropriate back-ends. --- contrib/lisp/org-e-publish.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/contrib/lisp/org-e-publish.el b/contrib/lisp/org-e-publish.el index 894ee076a..d31f81aab 100644 --- a/contrib/lisp/org-e-publish.el +++ b/contrib/lisp/org-e-publish.el @@ -579,6 +579,7 @@ is the property list for the given project. PUB-DIR is the publishing directory. Return output file name." + (require 'org-e-latex nil t) (org-e-publish-org-to 'e-latex filename ".tex" plist pub-dir)) (defun org-e-publish-org-to-pdf (plist filename pub-dir) @@ -589,6 +590,7 @@ is the property list for the given project. PUB-DIR is the publishing directory. Return output file name." + (require 'org-e-latex nil t) (org-e-latex-compile (org-e-publish-org-to 'e-latex filename ".tex" plist pub-dir))) @@ -600,6 +602,7 @@ is the property list for the given project. PUB-DIR is the publishing directory. Return output file name." + (require 'org-e-html nil t) (org-e-publish-org-to 'e-html filename ".html" plist pub-dir)) ;; TODO: Not implemented yet. @@ -621,6 +624,7 @@ is the property list for the given project. PUB-DIR is the publishing directory. Return output file name." + (require 'org-e-ascii nil t) (org-e-publish-org-to 'e-ascii filename ".txt" `(:ascii-charset ascii ,@plist) pub-dir))