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
This commit is contained in:
parent
aa6dba8a74
commit
477a8deb31
|
@ -97,7 +97,7 @@ example above."
|
||||||
variables)))
|
variables)))
|
||||||
(unless (stringp source-block)
|
(unless (stringp source-block)
|
||||||
(setq source-block (symbol-name 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))
|
(if (and source-block (> (length source-block) 0))
|
||||||
(let ((params
|
(let ((params
|
||||||
(eval `(org-babel-parse-header-arguments
|
(eval `(org-babel-parse-header-arguments
|
||||||
|
|
Loading…
Reference in New Issue