Trying to retain whitespace in output results from R.

I don't believe this solves it, but chomp is more the right thing to
do than trim. I'd like to retain all the whitespace so that alignment
of columns is correct in stdout.
This commit is contained in:
Dan Davison 2009-07-19 01:47:37 -04:00
parent 7aafbb0cfc
commit 8294122f8f
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ last statement in BODY, as elisp."
el))))
(mapcar #'org-babel-trim raw))))))
(case result-type
(output (org-babel-trim (mapconcat #'identity results "\n")))
(output (org-babel-chomp (mapconcat #'identity results "\n")))
(value (org-babel-import-elisp-from-file tmp-file colnames)))))))