Hello - I noticed today as I was playing with code blocks that some results are prematurely truncated, possibly because they contain nil as a first element and are thus considered empty return values.
Consider: #+BEGIN_SRC emacs-lisp '(a nil nil b) #+END_SRC #+results: | a | nil | nil | b | But then: #+BEGIN_SRC emacs-lisp '(nil nil nil b) #+END_SRC #+results: I'm using Emacs 24.0.50.1 and Org Mode 7.6, ELPA version 20110728. -- Matthew Snyder