X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fdictionary%2Fsplit-file.c;h=d27ab3a65b3ab1b34c6c74b9a8cb1b011287a7a2;hb=dfd1972f7bcb550a4fc3b05dbe7e71d12334b0a7;hp=d2f59ccc813fe8661435bb03bee0cbf1a01caa20;hpb=c9a3c45e44c1c03d13d4eb186e3817bc836f75f8;p=pspp diff --git a/src/language/dictionary/split-file.c b/src/language/dictionary/split-file.c index d2f59ccc81..d27ab3a65b 100644 --- a/src/language/dictionary/split-file.c +++ b/src/language/dictionary/split-file.c @@ -31,8 +31,7 @@ #include #include #include -#include -#include +#include #include "xalloc.h" @@ -78,7 +77,6 @@ output_split_file_values (const struct dataset *ds, const struct ccase *c) return; t = tab_create (3, split_cnt + 1); - tab_dim (t, tab_natural_dimensions, NULL, NULL); tab_vline (t, TAL_GAP, 1, 0, split_cnt); tab_vline (t, TAL_GAP, 2, 0, split_cnt); tab_text (t, 0, 0, TAB_NONE, _("Variable")); @@ -104,6 +102,5 @@ output_split_file_values (const struct dataset *ds, const struct ccase *c) if (val_lab) tab_text (t, 2, i + 1, TAB_LEFT, val_lab); } - tab_flags (t, SOMF_NO_TITLE); tab_submit (t); }