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