summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2013-01-01 17:35:35 +0100
committerBastien Guerry <bzg@altern.org>2013-01-01 17:35:35 +0100
commit0f2bb6a56f4ff36cab13d0c6dd888a5b1691dc76 (patch)
treec08b6051d25c728ffc92af3206716ec82d3e72fe
parentdbd84ad6558d3de78fc4165fcb406dd9ee628d05 (diff)
downloadorg-mode-0f2bb6a56f4ff36cab13d0c6dd888a5b1691dc76.tar.gz
org-exp.el (org-export-string): Fix number of arguments passed to the org-export-as-* functions.
* org-exp.el (org-export-string): Fix number of arguments passed to the org-export-as-* functions. This fixes commit 43a242, thanks to George McNinch for reporting this.
-rw-r--r--lisp/org-exp.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org-exp.el b/lisp/org-exp.el
index 7428a28..51c34fd 100644
--- a/lisp/org-exp.el
+++ b/lisp/org-exp.el
@@ -3047,7 +3047,7 @@ to the value of `temporary-file-directory'."
(eval ;; convert to fmt -- mimicking `org-run-like-in-org-mode'
(list 'let org-local-vars
(list (intern (format "org-export-as-%s" fmt))
- nil nil nil ''string t dir))))
+ nil nil ''string t dir))))
(delete-file tmp-file))))
;;;###autoload