diff options
| author | Bastien Guerry | 2011-07-28 17:13:49 +0200 |
|---|---|---|
| committer | Bastien Guerry | 2011-07-28 17:13:49 +0200 |
| commit | 3ab2c837b302b01fff610f7b83050ab7e703477c (patch) | |
| tree | efa67ed523bbda4d41488ae6b9ad2782941ddcf2 /lisp/org/ob-gnuplot.el | |
| parent | 44a8054f971837447e80d618b6e0c2a77778a2ee (diff) | |
| download | emacs-3ab2c837b302b01fff610f7b83050ab7e703477c.tar.gz emacs-3ab2c837b302b01fff610f7b83050ab7e703477c.zip | |
Merge changes from Org 7.4 to current Org 7.7.
Diffstat (limited to 'lisp/org/ob-gnuplot.el')
| -rw-r--r-- | lisp/org/ob-gnuplot.el | 7 |
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 |