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