aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/org/ob-gnuplot.el
diff options
context:
space:
mode:
authorPaul Eggert2011-07-28 09:27:30 -0700
committerPaul Eggert2011-07-28 09:27:30 -0700
commit70c2e72ae5368e39277de78a414c9d42292886c5 (patch)
treedc2f35bb271058a7dc728ef970da93db9a48b2ff /lisp/org/ob-gnuplot.el
parentf13cae31f1beecc4f3fd39e4aa4bcb9fc8d9e7c1 (diff)
parent58e9b49a90338bf979b86951b6d85e60308ecc3e (diff)
downloademacs-70c2e72ae5368e39277de78a414c9d42292886c5.tar.gz
emacs-70c2e72ae5368e39277de78a414c9d42292886c5.zip
Merge from trunk.
Diffstat (limited to 'lisp/org/ob-gnuplot.el')
-rw-r--r--lisp/org/ob-gnuplot.el7
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/org/ob-gnuplot.el b/lisp/org/ob-gnuplot.el
index 41b47102d65..8259cf839e5 100644
--- a/lisp/org/ob-gnuplot.el
+++ b/lisp/org/ob-gnuplot.el
@@ -1,11 +1,11 @@
1;;; ob-gnuplot.el --- org-babel functions for gnuplot evaluation 1;;; ob-gnuplot.el --- org-babel functions for gnuplot evaluation
2 2
3;; Copyright (C) 2009-2011 Free Software Foundation, Inc. 3;; Copyright (C) 2009, 2010 Free Software Foundation, Inc.
4 4
5;; Author: Eric Schulte 5;; Author: Eric Schulte
6;; Keywords: literate programming, reproducible research 6;; Keywords: literate programming, reproducible research
7;; Homepage: http://orgmode.org 7;; Homepage: http://orgmode.org
8;; Version: 7.4 8;; Version: 7.7
9 9
10;; This file is part of GNU Emacs. 10;; This file is part of GNU Emacs.
11 11
@@ -157,7 +157,7 @@ This function is called by `org-babel-execute-src-block'."
157 (gnuplot-send-buffer-to-gnuplot))) 157 (gnuplot-send-buffer-to-gnuplot)))
158 (if (member "output" (split-string result-type)) 158 (if (member "output" (split-string result-type))
159 output 159 output
160 out-file)))) 160 nil)))) ;; signal that output has already been written to file
161 161
162(defun org-babel-prep-session:gnuplot (session params) 162(defun org-babel-prep-session:gnuplot (session params)
163 "Prepare SESSION according to the header arguments in PARAMS." 163 "Prepare SESSION according to the header arguments in PARAMS."
@@ -230,5 +230,6 @@ Pass PARAMS through to `orgtbl-to-generic' when exporting TABLE."
230 230
231(provide 'ob-gnuplot) 231(provide 'ob-gnuplot)
232 232
233;; arch-tag: 50490ace-a9e1-4b29-a6e5-0db9f16c610b
233 234
234;;; ob-gnuplot.el ends here 235;;; ob-gnuplot.el ends here