Hi Mark,
Thanks for the suggestion, I've applied a modified version of your patch
which moves the progn wrapping out of the expand-body function and into
the evaluation function. Progn wrapping is required for blocks like the
following.
#+begin_src lisp :results value
(format t "~&eric")
(+
Hi,
When tangling lisp source code blocks, the tangled code is wrapped in
a `(progn ,@body). For example,
the block
#+begin_src lisp :tangle example.lisp
(defun mischief ()
(/ 1 0))
#+end_src
produces
: (progn (defun mischief ()
: (/ 1 0))
: )
With the attached patch, the tangling process now