Re: [O] Unwanted "(progn )" when Tangling Lisp Code

2011-05-31 Thread Eric Schulte
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") (+

[O] Unwanted "(progn )" when Tangling Lisp Code

2011-05-30 Thread Mark Cox
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