gnuplot, close output terminal when opened

* lisp/ob-gnuplot.el (org-babel-expand-body:gnuplot): Gnuplot, close
  output terminal when opened.
This commit is contained in:
Eric Schulte 2013-06-21 10:06:19 -06:00
parent c5cc342e1c
commit e1f0232f33
1 changed files with 5 additions and 2 deletions

View File

@ -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