浏览代码

ob-gnuplot: Fix regression from 23d8d59df when ox-org is not loaded

* lisp/ob-gnuplot.el (org-babel-gnuplot-table-to-data): Require
ox-org, making sure that org export backend is available.
Ihor Radchenko 3 年之前
父节点
当前提交
eb9f34222a
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      lisp/ob-gnuplot.el

+ 1 - 0
lisp/ob-gnuplot.el

@@ -284,6 +284,7 @@ then create one.  Return the initialized session.  The current
 (defun org-babel-gnuplot-table-to-data (table data-file params)
   "Export TABLE to DATA-FILE in a format readable by gnuplot.
 Pass PARAMS through to `orgtbl-to-generic' when exporting TABLE."
+  (require 'ox-org)
   (with-temp-file data-file
     (insert (let ((org-babel-gnuplot-timestamp-fmt
 		   (or (plist-get params :timefmt) "%Y-%m-%d-%H:%M:%S")))