浏览代码

gnuplot, close output terminal when opened

* lisp/ob-gnuplot.el (org-babel-expand-body:gnuplot): Gnuplot, close
  output terminal when opened.
Eric Schulte 11 年之前
父节点
当前提交
e1f0232f33
共有 1 个文件被更改,包括 5 次插入2 次删除
  1. 5 2
      lisp/ob-gnuplot.el

+ 5 - 2
lisp/ob-gnuplot.el

@@ -147,8 +147,11 @@ code."
 	(funcall add-to-body (concat "set timefmt \""
 				     (or timefmt
 					 "%Y-%m-%d-%H:%M:%S") "\"")))
-      (when out-file (funcall add-to-body (format "set output \"%s\""
-						  out-file)))
+      (when out-file
+	;; set the terminal at the top of the block
+	(funcall add-to-body (format "set output \"%s\"" out-file))
+	;; and close the terminal at the bottom of the block
+	(setq body (concat body "\nset output\n")))
       (when term (funcall add-to-body (format "set term %s" term)))
       ;; insert variables into code body: this should happen last
       ;; placing the variables at the *top* of the code in case their