浏览代码

babel: gnuplot can now return it's string output -- when session is set to "none"

Eric Schulte 15 年之前
父节点
当前提交
8625e5c0bc
共有 1 个文件被更改,包括 9 次插入3 次删除
  1. 9 3
      contrib/babel/lisp/langs/org-babel-gnuplot.el

+ 9 - 3
contrib/babel/lisp/langs/org-babel-gnuplot.el

@@ -87,7 +87,9 @@ called by `org-babel-execute-src-block'."
            (y-labels (plist-get params :ylabels))
            (timefmt (plist-get params :timefmt))
            (time-ind (or (plist-get params :timeind)
-                         (when timefmt 1))))
+                         (when timefmt 1)))
+           (result-type (cdr (assoc :results params)))
+           output)
       (flet ((add-to-body (text)
                           (setq body (concat text "\n" body))))
         ;; append header argument settings to body
@@ -132,12 +134,16 @@ called by `org-babel-execute-src-block'."
               (with-temp-file script-file
                 (insert (concat body "\n")))
               (message "gnuplot \"%s\"" script-file)
-              (message (shell-command-to-string (format "gnuplot \"%s\"" script-file))))
+              (setq output
+                    (shell-command-to-string (format "gnuplot \"%s\"" script-file)))
+              (message output))
           (with-temp-buffer
             (insert (concat body "\n"))
             (gnuplot-mode)
             (gnuplot-send-buffer-to-gnuplot)))
-        out-file))))
+        (if (member "output" (split-string result-type))
+            output
+          out-file)))))
 
 (defun org-babel-prep-session:gnuplot (session params)
   "Prepare SESSION according to the header arguments specified in PARAMS."