removed debugging statement from org-babel.el

This commit is contained in:
Eric Schulte 2009-06-14 10:27:29 -07:00
parent 77c8f29968
commit 7d063efd28
1 changed files with 0 additions and 1 deletions

View File

@ -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)))