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.
This commit is contained in:
Eric Schulte 2009-07-20 13:10:11 -06:00
parent 809462e3ee
commit e5b2e307fa

View file

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