TODO sbe adds extra ()s

  • State "TODO" from "" 2010-08-08 Sun 16:22

(sbe "totals()")

I think this patch should be applied so that () is not added in the above sbe call

Modified lisp/ob-table.el diff –git a/lisp/ob-table.el b/lisp/ob-table.el index 4a0454c..5e2770d 100644 — a/lisp/ob-table.el +++ b/lisp/ob-table.el @@ -104,7 +104,7 @@ example above." (eval `(org-babel-parse-header-arguments (concat ":var results=" ,source-block

  • "("
  • (if ,variables (concat "(" (mapconcat (lambda (var-spec) (if (> (length (cdr var-spec)) 1)

@@ -113,7 +113,7 @@ example above." (format "%S=%s" (car var-spec) (cadr var-spec)))) ',variables ", ")

  • ")")))))
  • ")"))))))) (org-babel-execute-src-block nil (list "emacs-lisp" "results" (org-babel-merge-params '((:results . "silent")) params))))