table-casereader: Put space between columns.
authorBen Pfaff <blp@cs.stanford.edu>
Sat, 16 Apr 2011 05:49:00 +0000 (22:49 -0700)
committerBen Pfaff <blp@cs.stanford.edu>
Sat, 16 Apr 2011 05:49:00 +0000 (22:49 -0700)
commitac5fc2c85d86f1a14cdea0a215666ab39b44a1dc
treecf58ecef85e646cce986f885bfd4e867d539deb3
parent02c2f23a15c9d7b47d17eaf6aeda216120da5374
table-casereader: Put space between columns.

When table_casereaders are pasted together next to each other, there
should normally be a little bit of space between neighboring columns,
instead of having them directly abutting.  This makes the output of
LIST, for example, much more readable.

Without this commit, LIST output for three variables named x, y, and
z, all with F1.0 format, looks something like this:

xyz
---
111
222
311
412
521
612
711
811
912

With this commit, it looks like this:

x y z
-----
1 1 1
2 2 2
3 1 1
4 1 2
5 2 1
6 1 2
7 1 1
8 1 1
9 1 2
src/output/table-casereader.c
tests/output/render.at