removed debugging statement from org-babel.el
This commit is contained in:
parent
77c8f29968
commit
7d063efd28
|
@ -127,7 +127,6 @@ the header arguments specified at the source code block."
|
||||||
(error "Language is not in `org-babel-interpreters': %s" lang))
|
(error "Language is not in `org-babel-interpreters': %s" lang))
|
||||||
(setq result (funcall cmd body params))
|
(setq result (funcall cmd body params))
|
||||||
;; possibly force result into a vector
|
;; possibly force result into a vector
|
||||||
(message "with %s result %S" lang result)
|
|
||||||
(if (and (not (listp result)) (cdr (assoc :results params))
|
(if (and (not (listp result)) (cdr (assoc :results params))
|
||||||
(member "vector" (split-string (cdr (assoc :results params)))))
|
(member "vector" (split-string (cdr (assoc :results params)))))
|
||||||
(setq result (list result)))
|
(setq result (list result)))
|
||||||
|
|
Loading…
Reference in New Issue