ob-emacs-lisp: Don't print arguments of post-process arguments to stdout

* lisp/ob-emacs-lisp.el (org-babel-expand-body:emacs-lisp): Do not
print post-processing argument.

It is unclear whether the arguments were printed on purpose.  It might
be useful to do so at times for debugging purposes, but generally they
drown out other messages when a lot of post-processing is being done;
making it harder to spot messages of interest that would otherwise
allow noticing regressions.  This is particularly troublesome when
running `org-babel-execute-buffer' from a Makefile or script.
This commit is contained in:
Jonas Bernoulli 2022-10-06 13:43:45 +02:00 committed by Ihor Radchenko
parent 7f3a6cf6e7
commit 2f4de60980
No known key found for this signature in database
GPG Key ID: 6470762A7DA11D8B
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ by `org-edit-src-code'.")
(format "(let (%s)\n%s\n)" (format "(let (%s)\n%s\n)"
(mapconcat (mapconcat
(lambda (var) (lambda (var)
(format "%S" (print `(,(car var) ',(cdr var))))) (format "%S" `(,(car var) ',(cdr var))))
vars "\n ") vars "\n ")
body)))) body))))