Browse Source

ob-octave: do not echo variables to STDOUT -- Thanks to Eric S Fraga

Eric Schulte 14 năm trước cách đây
mục cha
commit
a73a689785
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      lisp/ob-octave.el

+ 1 - 1
lisp/ob-octave.el

@@ -103,7 +103,7 @@ end")
   "Return list of octave statements assigning the block's variables"
   (mapcar
    (lambda (pair)
-     (format "%s=%s"
+     (format "%s=%s;"
 	     (car pair)
 	     (org-babel-octave-var-to-octave (cdr pair))))
    (mapcar #'cdr (org-babel-get-header params :var))))