From e5b2e307fafbaf4668914acbd7891dbf77f8e368 Mon Sep 17 00:00:00 2001 From: Eric Schulte Date: Mon, 20 Jul 2009 13:10:11 -0600 Subject: [PATCH] removed the result-params from the let in org-babel-gnuplot, keeping the vars line in the let for now because of the peculiar handling of the vars in gnuplot. --- lisp/langs/org-babel-gnuplot.el | 1 - 1 file changed, 1 deletion(-) diff --git a/lisp/langs/org-babel-gnuplot.el b/lisp/langs/org-babel-gnuplot.el index 23821ba01..8f74f780c 100644 --- a/lisp/langs/org-babel-gnuplot.el +++ b/lisp/langs/org-babel-gnuplot.el @@ -66,7 +66,6 @@ variable names and the value to be used in the gnuplot code." called by `org-babel-execute-src-block' via multiple-value-bind." (message "executing Gnuplot source code block") (let* ((vars (org-babel-gnuplot-process-vars params)) - (result-params (split-string (or (cdr (assoc :results params)) ""))) (out-file (cdr (assoc :file params))) (term (or (cdr (assoc :term params)) (when out-file (file-name-extension out-file))))