Browse Source

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.
Eric Schulte 16 years ago
parent
commit
e5b2e307fa
1 changed files with 0 additions and 1 deletions
  1. 0 1
      lisp/langs/org-babel-gnuplot.el

+ 0 - 1
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))))