X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fdictionary%2Fsplit-file.c;h=34949c5d15eaacb41ea8330fcaf0ecd88e998543;hb=0ec7c606844768cfc501d6213ffa17ebdfda1bab;hp=d27ab3a65b3ab1b34c6c74b9a8cb1b011287a7a2;hpb=d0b91eae59319ab2756d0d43b9cb15eb9cd3c234;p=pspp diff --git a/src/language/dictionary/split-file.c b/src/language/dictionary/split-file.c index d27ab3a65b..34949c5d15 100644 --- a/src/language/dictionary/split-file.c +++ b/src/language/dictionary/split-file.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 1997-9, 2000, 2009 Free Software Foundation, Inc. + Copyright (C) 1997-9, 2000, 2009, 2010, 2011 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -18,22 +18,22 @@ #include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include "xalloc.h" +#include "data/case.h" +#include "data/data-out.h" +#include "data/dataset.h" +#include "data/dictionary.h" +#include "data/format.h" +#include "data/value-labels.h" +#include "data/variable.h" +#include "language/command.h" +#include "language/dictionary/split-file.h" +#include "language/lexer/lexer.h" +#include "language/lexer/variable-parser.h" +#include "libpspp/message.h" +#include "libpspp/str.h" +#include "output/tab.h" + +#include "gl/xalloc.h" #include "gettext.h" #define _(msgid) gettext (msgid) @@ -59,7 +59,7 @@ cmd_split_file (struct lexer *lexer, struct dataset *ds) free (v); } - return lex_end_of_command (lexer); + return CMD_SUCCESS; } /* Dumps out the values of all the split variables for the case C. */ @@ -97,7 +97,7 @@ output_split_file_values (const struct dataset *ds, const struct ccase *c) tab_text_format (t, 1, i + 1, 0, "%.*s", print->w, s); free (s); - + val_lab = var_lookup_value_label (v, case_data (c, v)); if (val_lab) tab_text (t, 2, i + 1, TAB_LEFT, val_lab);