summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2015-10-01 21:55:13 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2015-10-01 21:55:13 +0200
commit609e1e28fb69f49ef4dcb646aa0cf56f7c18c332 (patch)
treefb6b34c52653f827cec4bfe2231bd0435c90be3a
parent919d0cdb76bf6efab2d3a4b710db078d855bcce1 (diff)
downloadorg-mode-609e1e28fb69f49ef4dcb646aa0cf56f7c18c332.tar.gz
Fix "undefined symbol 'org-export-create-backend"
* lisp/org-table.el (orgtbl-to-generic): Make sure "ox.el" is loaded before converting a radio table. Reported-by: Dave Marquardt <davemarq@linux.vnet.ibm.com> <http://permalink.gmane.org/gmane.emacs.orgmode/101642>
-rw-r--r--lisp/org-table.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/org-table.el b/lisp/org-table.el
index ba79690..b953b0d 100644
--- a/lisp/org-table.el
+++ b/lisp/org-table.el
@@ -4782,6 +4782,8 @@ This may be either a string or a function of two arguments:
example \"%s\\\\times10^{%s}\". This may also be a property
list with column numbers and format strings or functions.
:fmt will still be applied after :efmt."
+ ;; Make sure `org-export-create-backend' is available.
+ (require 'ox)
(let* ((backend (plist-get params :backend))
(custom-backend
;; Build a custom back-end according to PARAMS. Before