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