* lisp/ob-perl.el (org-babel-perl-wrapper-method): Use TAB as separator for table results as expected by `org-babel-import-elisp-from-file´.
@@ -106,10 +106,11 @@ specifying a var of the same value."
my $rt = ref $rv;
if (qq(ARRAY) eq $rt) {
local $\\=$/;
+ local $,=qq(\t);
foreach my $rv ( @$rv ) {
- print join q(|), @$rv;
+ print @$rv;
} else {
print $rv;
}