Fix change log.
[pspp-builds.git] / src / language / data-io / ChangeLog
1 Mon May  1 15:58:28 2006  Ben Pfaff  <blp@gnu.org>
2
3         Remove vestiges of FILE TYPE support. 
4         
5         * data-list.c: (cmd_data_list) Don't check for FILE TYPE.
6         (cmd_repeating_data) Ditto.
7         Remove vestiges of FILE TYPE support. 
8         
9         * automake.mk (src_language_data_io_libdata_io_a_SOURCES): Remove
10         file-type.c, file-type.h.
11
12         * file-type.c: Removed.
13         
14         * file-type.h: Removed.
15
16 Wed Apr 26 13:16:28 2006  Ben Pfaff  <blp@gnu.org>
17
18         Improve the way we handle the various parsing "states".  Until now
19         we've hard-coded the state transitions in the command definition
20         file, but that's error-prone and, worse, it's redundant--we can
21         figure out what state we're in anyhow.  We can cleanly handle
22         INPUT PROGRAM and FILE TYPE with a nested command-processing loop.
23         
24         * data-list.c: (cmd_data_list) Use in_file_type() or
25         in_input_program() in place of case_source_is_class() or
26         case_source_is_complex().
27
28         * file-type.c: NB: Not really fixed except minimally to compile,
29         because it doesn't work anyway.
30         (in_file_type) New function.
31         (cmd_record_type) No need to check that we're in FILE TYPE.
32         (cmd_end_file_type) Ditto.
33         (var file_type_source_class) Make static.
34
35         * get.c: (cmd_match_files) Check vfm_source instead of pgm_state.
36
37         * inpt-pgm.c: (in_input_program) New function.
38         (cmd_input_program) Rewrite to include nested command processing
39         loop.
40         (cmd_end_input_program) Just return CMD_END_SUBLOOP.
41         (var input_program_source_class) Make static.
42         (cmd_end_case) No need to check that we're in INPUT PROGRAM.
43         (cmd_end_file) Ditto.
44         
45         * automake.mk (src_language_data_io_libdata_io_a_SOURCES): Add
46         file-type.h, inpt-pgm.h.
47
48         * file-type.h: New file.
49
50         * inpt-pgm.h: New file.
51
52 Tue Apr 25 13:11:55 2006  Ben Pfaff  <blp@gnu.org>
53
54         * print.c: Don't special-case MS-DOS line terminators.
55         (macro LINE_END_WIDTH) Removed.
56         (alloc_line) Line ends are 1 byte.
57         (print_trns_proc) Just output \n for line end.
58
59 Sun Apr 23 22:05:58 2006  Ben Pfaff  <blp@gnu.org>
60
61         Continue reforming error message support.  In this phase, get rid
62         of message "titles" and put the message text in `struct error'.
63         Now `struct error' encapsulates a message more properly.
64         
65         * data-list.c: (macro RPD_ERR) Removed.
66         (rpd_msg) New function.  Updated all references to tmsg() to call
67         this function instead.
68
69 Sat Apr 15 19:38:13 2006  Ben Pfaff  <blp@gnu.org>
70
71         Remove last users of struct file_ext so we can get rid of it
72         entirely.
73         
74         * data-reader.c: (struct dfm_reader) Change file member from
75         struct file_ext to FILE *.  Updated all references.
76         (dfm_close_reader) Close file with fn_close() instead of
77         fn_close_ext().  Also, make a copy of the file name from the file
78         handle before closing it, because we can't extract it after we
79         close the file.
80         (dfm_open_reader) Open file with fn_open() instead of
81         fn_open_ext().
82
83         * data-writer.c: (struct dfm_writer) Change file member 
84         struct file_ext to FILE *.  Updated all references.
85         (dfm_close_writer) Close file with fn_close() instead of
86         fn_close_ext().  Also, make a copy of the file name from the file
87         handle before closing it, because we can't extract it after we
88         close the file.
89         (dfm_open_writer) Open file with fn_open() instead of
90         fn_open_ext().
91
92 Sat Apr 15 18:00:32 2006  Ben Pfaff  <blp@gnu.org>
93
94         * data-list.c: Add prototype to suppress warning for
95         cmd_repeating_data().
96         
97 Thu Mar  2 08:40:33 WST 2006 John Darrington <john@darrington.wattle.id.au>
98         
99         * Moved files from src directory