ob: fix indentation bug when inserting results from inline code blocks

* lisp/ob.el (org-babel-insert-result): Don't choke if indent is not a number.
This commit is contained in:
Eric Schulte 2011-02-14 23:51:40 -07:00
parent d9eeb15ab9
commit e9cba96b0a
1 changed files with 1 additions and 1 deletions

View File

@ -1557,7 +1557,7 @@ code ---- the results are extracted in the syntax of the source
(org-babel-examplize-region beg end results-switches)
(setq end (point)))))
;; possibly indent the results to match the #+results line
(when (and (not inlinep) indent (> indent 0)
(when (and (not inlinep) (numberp indent) indent (> indent 0)
;; in this case `table-align' does the work for us
(not (and (listp result)
(member "append" result-params))))