From 477a8deb31f9a0e612aaed52c3a504399bbe310d Mon Sep 17 00:00:00 2001 From: Dan Davison Date: Sun, 13 Feb 2011 10:52:58 +0000 Subject: [PATCH] ob: Don't truncate sbe results This permits sbe to be used to retrieve multiline results. An example of usage is with the :shebang and :preamble header args, #+srcname: get-shebang #+begin_src org initial shebang lines here #+end_src #+begin_src emacs-lisp :shebang (sbe get-shebang) stuff #+end_src * lisp/ob-table.el (sbe): Don't truncate sbe results --- lisp/ob-table.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ob-table.el b/lisp/ob-table.el index b7f9673c6..ae444efd0 100644 --- a/lisp/ob-table.el +++ b/lisp/ob-table.el @@ -97,7 +97,7 @@ example above." variables))) (unless (stringp source-block) (setq source-block (symbol-name source-block))) - (org-babel-table-truncate-at-newline ;; org-table cells can't be multi-line + (org-babel-trim (if (and source-block (> (length source-block) 0)) (let ((params (eval `(org-babel-parse-header-arguments