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