0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-29 22:47:56 +00:00

ob-lob: correctly indent results of non-inline call lines.

* lisp/ob-lob.el (org-babel-lob-get-info): Correctly indent results of
  non-inline call lines.
This commit is contained in:
Eric Schulte 2011-06-25 17:56:40 -07:00
parent 8d7d4428cc
commit 4e0387a766

View file

@ -115,7 +115,8 @@ if so then run the appropriate source block from the Library."
(or (nonempty 7 16) "")
(or (nonempty 8 19) ""))
(nonempty 9 18)))
(list (length (nonempty 1 11)))))))))
(list (length (if (= (length (match-string 12)) 0)
(match-string 2) (match-string 11))))))))))
(defun org-babel-lob-execute (info)
"Execute the lob call specified by INFO."