0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-07-15 18:46:26 +00:00

litorgy-execute-src-block will again stifle results when called with truthy ARG value

This commit is contained in:
Eric Schulte 2009-05-22 06:30:25 -07:00
parent 9b7ae66e4f
commit 73163718ca

View file

@ -120,7 +120,9 @@ the header arguments specified at the source code block."
(unless (member lang litorgy-interpreters)
(error "Language is not in `litorgy-interpreters': %s" lang))
(setq result (funcall cmd body params))
(litorgy-insert-result result (cdr (assoc :results params)))
(if arg
(message (format "%S" result))
(litorgy-insert-result result (cdr (assoc :results params))))
result))
(defun litorgy-eval-buffer (&optional arg)