TODO Appended newline character when using indexing

  • State "TODO" from "" 2010-08-08 Sun 16:25
  my $total = 0;
  foreach my $row  (@$details) {
      $total += @$row[2];
  }

return $total;

(sbe "totals(details=expenses[1:-1])")

thius sbe call returns "155…"

The ellipsis comes from `org-babel-table-truncate-at-newline', which encounters a newline char that shouldn't be there.