Continue reforming procedure execution. In this phase, break
[pspp-builds.git] / src / data / ChangeLog
1 Wed Apr 26 19:39:28 2006  Ben Pfaff  <blp@gnu.org>
2
3         Continue reforming procedure execution.  In this phase, break
4         procedure.c into multiple files.
5         
6         * automake.mk: (src_data_libdata_a_SOURCES) Add all the new files.
7
8         * case-sink.c: New file.
9
10         * case-sink.h: New file.
11         
12         * case-source.c: New file.
13
14         * case-source.h: New file.
15         
16         * storage-stream.c: New file.
17
18         * storage-stream.h: New file.
19
20 Wed Apr 26 14:55:19 2006  Ben Pfaff  <blp@gnu.org>
21
22         * variable.h: (struct variable) Remove `init' member and all
23         references to it from other files.  It was initialized in several
24         places, but nothing really ever used it for anything worthwhile.
25         Thanks to Jason Stover for pointing out how confusing this
26         member is.
27
28 Sun Apr 23 22:04:45 2006  Ben Pfaff  <blp@gnu.org>
29
30         Continue reforming error message support.  In this phase, get rid
31         of message "titles" and put the message text in `struct error'.
32         Now `struct error' encapsulates a message more properly.
33         
34         * casefile.c: (io_error) Use err_msg() instead of err_vmsg().
35         Format message ourselves.
36
37         * data-in.c: (vdls_error) Ditto.
38
39         * por-file-reader.c: (error) Ditto.
40
41         * sys-file-reader.c: (corrupt_msg) Ditto.
42
43 Sun Apr 16 18:49:51 2006  Ben Pfaff  <blp@gnu.org>
44
45         GNU standards require "file name" instead of "filename" in
46         documentation.  It's nice for our code to follow the convention
47         too.
48         
49         * casefile.c: (struct casefile) Rename `filename' member to
50         `file_name'.  Updated all references.
51
52         * file-name.c: [!unix] (struct file_identity) Rename
53         normalized_filename member to normalized_file_name.  Updated all
54         references.
55
56 Sun Apr 16 18:35:33 2006  Ben Pfaff  <blp@gnu.org>
57
58         We don't really support anything but Unix-like environments well,
59         so we might as well de-obfuscate by writing directory and path
60         separators explicitly.
61
62         * file-name.h: (macro DIR_SEPARATOR) Removed.  Changed all usages
63         to just '/'.
64         (macro PATH_SEPARATOR) Removed.  Changed all usages to just ':'.
65         (macro DIR_SEPARATOR_STRING) Removed.  Changed all usages to just
66         "/".
67         (macro PATH_SEPARATOR_STRING) Removed.  Changed all usages to just
68         ":"
69
70 Sun Apr 16 18:28:35 2006  Ben Pfaff  <blp@gnu.org>
71
72         GNU standards require "file name" instead of "filename" in
73         documentation.  It's nice for our code to follow the convention
74         too.
75         
76         * filename.c: Rename to file-name.c.
77
78         * filename.h: Rename to file-name.h.  Update all inclusions.
79         Update header guards.
80
81         * automake.mk: Update file names.
82
83 Sun Apr 16 16:42:47 2006  Ben Pfaff  <blp@gnu.org>
84
85         * filename.c: (fn_dirname) Renamed fn_dir_name(), all references
86         updated.
87         (fn_basename) Removed (dead code).
88         (fn_absolute_p) Renamed fn_is_absolute(), all references updated.
89         (fn_special_p) Renamed fn_is_special(), all references updated.
90         (fn_exists_p) Renamed fn_exists(), all references updated.
91
92 Sun Apr 16 16:33:58 2006  Ben Pfaff  <blp@gnu.org>
93
94         * filename.c: (fn_tilde_expand) Rewrite for cleaner code.  
95         Also, now it only tilde-expands file names, not paths.
96         (fn_search_path) Tilde-expand one directory at a time.
97
98 Sun Apr 16 16:28:06 2006  Ben Pfaff  <blp@gnu.org>
99
100         * filename.c: (fn_search_path) rewrite for cleaner code.  Also,
101         get rid of non-Unixlike version of the code, which has probably
102         never been tested.
103         (fn_prepend_dir) Removed (dead code).
104
105         * filename.h: (macro DIR_SEPARATOR_STRING) New.
106         (macro PATH_SEPARATOR_STRING) New.
107 Sun Apr 16 16:05:28 2006  Ben Pfaff  <blp@gnu.org>
108
109         Continue reforming error message support.  In this phase, we get
110         rid of VM() and the other msg() support for "verbosity", replacing
111         it by a new function verbose_msg().
112
113         * filename.c: (fn_search_path) Use verbose_msg() instead of
114         msg(VM(), ...).  
115
116 Sat Apr 15 19:53:19 2006  Ben Pfaff  <blp@gnu.org>
117
118         * sfm-private.h: Get rid of #defines after #error, which makes no
119         sense.
120
121 Sat Apr 15 19:48:57 2006  Ben Pfaff  <blp@gnu.org>
122
123         Get rid of our own int32 type in favor of the standard int32_t
124         type.
125         
126         * sfm-private.h: (int32 macro) Don't define this anymore.  Do
127         include <stdint.h>.
128
129         * sys-file-reader.c: Use int32_t instead of int32 throughout.
130         
131         * sys-file-writer.c: Use int32_t instead of int32 throughout.
132
133 Sat Apr 15 19:36:47 2006  Ben Pfaff  <blp@gnu.org>
134
135         Remove ill-considered file routines that are no longer used.
136         
137         * filename.c: (fn_open_ext) Removed.
138         (fn_close_ext) Removed.
139
140         * filename.h: (struct file_ext) Removed.
141
142 Mon Apr  3 13:22:39 2006  Ben Pfaff  <blp@gnu.org>
143
144         * variable.c (var_is_valid_name): Move declarations before code
145         for C90 compliance.
146
147 Tue Apr  4 15:28:40 WST 2006 John Darrington <john@darrington.wattle.id.au>
148
149         * filename.ch (fn_interp_vars): Fixed small buglet.
150
151 Tue Mar 28 13:47:16 WST 2006 John Darrington <john@darrington.wattle.id.au>
152         
153         * filename.[ch] (fn_interp_vars): Changed the signature and semantics
154         so as to modify the string inline.   Thus makeing it easier to
155         destroy the results when no longer needed.
156         
157 2006-03-25  Jason Stover  <jhs@math.gcsu.edu>
158
159         * category.c (cat_stored_values_destroy): Fixed memory leak.
160
161 Fri Mar 24 18:15:41 2006  Ben Pfaff  <blp@gnu.org>
162
163         Add some missing frees.  Thanks to John Darrington for reporting
164         these.
165
166         * any-writer.c (any_writer_close): Free writer.
167
168         * any-reader.c (any_reader_close): Free reader.
169
170 Mon Mar 20 16:33:53 2006  Ben Pfaff  <blp@gnu.org>
171
172         * por-file-reader.c: (error) Mark as NO_RETURN.
173
174 Sat Mar 11 15:06:07 WST 2006 John Darrington <john@darrington.wattle.id.au>
175
176         * settings.c: Changed default value of scompress to true.
177
178 Sat Mar  4 13:22:51 2006  Ben Pfaff  <blp@gnu.org>
179
180         * sfm-private.h: Include variable.h, to get SHORT_NAME_LEN.
181
182         * value.h: Remove check on MAX_SHORT_STRING, which I don't think
183         really applies.
184
185         * variable.h: Move definition of SHORT_NAME_LEN, LONG_NAME_LEN
186         here from pref.h.orig.
187
188 Sat Mar  4 12:50:48 WST 2006 John Darrington <john@darrington.wattle.id.au>
189
190         * sys-file-reader.c: Fixed bug reading compressed files.
191
192 Thu Mar  2 08:40:33 WST 2006 John Darrington <john@darrington.wattle.id.au>
193
194         * Numerous renames.  See src/ChangeLog for details.
195         
196         * Moved files from src directory