diff --git a/lisp/ob.el b/lisp/ob.el index dd285db..05bb320 100644 --- a/lisp/ob.el +++ b/lisp/ob.el @@ -1504,9 +1504,9 @@ code ---- the results are extracted in the syntax of the source (indent-rigidly beg end indent)))) (if (= (length result) 0) (if (member "value" result-params) - (message "No result returned by source block") - (message "Source block produced no output")) - (message "finished")))) + (message "Source block returned no value.") + (message "Source block produced no output.")) + (message "Inserted results of source block execution.")))) (defun org-babel-remove-result (&optional info) "Remove the result of the current source block."