e0cebfb85ccd02328da9f90cba570c515f4db5a2
[pspp-builds.git] / src / libpspp / ChangeLog
1 2007-07-22  Ben Pfaff  <blp@gnu.org>
2
3         * str.h: Include xstrndup.h also.
4
5         * float-format.c (float_get_double): New function.
6
7 2007-07-06  Ben Pfaff  <blp@gnu.org>
8
9         * copyleft.c (legal): Update startup notice to use format
10         recommended by latest GNU coding standards.
11
12 2007-06-06  Ben Pfaff  <blp@gnu.org>
13
14         * array.c (binary_search): Fix assertion.
15
16 2007-06-06  Ben Pfaff  <blp@gnu.org>
17
18         Add error propagation layer.  Patch #5916, slightly revised.
19
20         * automake.mk: Add new files.
21         
22         * taint.c: New file.
23
24         * taint.h: New file.
25
26 2007-06-03  Ben Pfaff  <blp@gnu.org>
27
28         Add ability for reverse iteration to tower code.
29         
30         * tower.c (tower_last): New function.
31         (tower_prev): New function.
32         (abt_to_tower_node): New function.
33         (first_node): Use abt_to_tower_node.
34         (last_node): New function.
35         (next_ndoe): Use abt_to_tower_node.
36         (prev_node): New function.
37
38 2007-06-03  Ben Pfaff  <blp@gnu.org>
39
40         * tower.c: Cache repeated lookups of a single tower element.  This
41         turns such lookups into O(1) operations without harming the big-O
42         of other operations.
43
44         * tower.h (struct tower): Add members for caching.
45
46         * range-set.c (range_set_clone): New function.
47
48         * array.c (insert_range): New function.
49         (insert_element): New function.
50         (move_range): New function.
51
52 2007-04-25  Ben Pfaff  <blp@gnu.org>
53
54         * model-checker.c: Don't use type sighandler_t, which is a GNU
55         extension.  Reported by "Daniel E WILLIAMS"
56         <Daniel.E.Williams@state.or.us>.
57
58 2007-04-25 John Darrington <john@darrington.wattle.id.au>
59
60         * i18n.c: Fixed bug converting long strings
61
62 2007-04-22  Ben Pfaff  <blp@gnu.org>
63
64         Patch #5884.
65         
66         * ll.h (ll_for_each_reverse): New macro.
67         (ll_for_each_reverse_continue): New macro.
68         (ll_for_each_reverse_safe): New macro.
69         (ll_for_each_safe_reverse_continue): New macro.
70         (ll_for_each_reverse_preremove): New macro.
71         (ll_for_each_reverse_postremove): New macro.
72         (ll_remove__): Removed (dead code).
73         (ll_tail__): New macro.
74         (ll_prev__): New macro.
75
76 2007-04-22  Ben Pfaff  <blp@gnu.org>
77
78         Implement model checker for testing purposes.
79
80         Patch #5873.
81         
82         * automake.mk (src_libpspp_libpspp_a_SOURCES): Add
83         model-checker.[ch].  Alphabetize.
84
85         * model-checker.c: New file.
86
87         * model-checker.h: New file.
88
89 2007-04-03  Ben Pfaff  <blp@gnu.org>
90
91         Apply patches #5828, #5837, #5841, #5843.
92
93         * abt.c (insert_relative): New function.
94         (abt_insert_after): New function.
95         (abt_insert_before): New function.
96
97         * range-map.c: New file.
98
99         * range-map.h: New file.
100
101         * range-set.c: New file.
102
103         * range-set.h: New file.
104
105         * tower.c: New file.
106
107         * tower.h: New file.
108
109 2007-04-01  Ben Pfaff  <blp@gnu.org>
110
111         * bt.c: Need #include <limits.h>.  Thanks to "John McCabe-Dansted"
112         <gmatht@gmail.com> for pointing this out.
113
114 2007-03-31  Ben Pfaff  <blp@gnu.org>
115
116         Patch #5827.
117
118         * automake.mk (src_libpspp_libpspp_a_SOURCES): Add bt.c.
119
120         * bt.h: New file.
121
122         * bt.c: New file.
123
124 2007-03-30  Ben Pfaff  <blp@gnu.org>
125
126         Patch #5829.
127
128         * automake.mk (src_libpspp_libpspp_a_SOURCES): Add deque.c.
129
130         * deque.h: Completely rewrote.  Adapted client to new interface.
131
132         * deque.c: New file.
133
134 2007-03-25  Ben Pfaff  <blp@gnu.org>
135
136         * automake.mk (src_libpspp_libpspp_a_SOURCES): Add
137         sparse-array.[ch].
138
139         * pool.c (pool_zalloc): New function.
140         (pool_calloc): New function.
141
142         * sparse-array.c: New file.
143
144         * sparse-array.h: New file.
145
146 Mon Mar  5 20:55:49 CET 2007 John Darrington <john@darrington.wattle.id.au>
147
148         * i18n.c: Cast second argument of iconv using ICONV_CONST
149
150 2007-02-22  Ben Pfaff  <blp@gnu.org>
151
152         * string.h: Don't include vsnprintf.h any more, because gnulib has
153         now absorbed it into string.h.
154
155 Thu Feb 22 12:25:52 CET 2007 John Darrington <john@darrington.wattle.id.au>
156
157         * syntax-gen.h syntax-gen.c: New files.
158
159 Sun Feb 18 11:21:41 2007  Ben Pfaff  <blp@gnu.org>
160
161         * alloc.h: Remove useless parentheses in #if "defined" operator.
162
163         * misc.h: Ditto.
164
165 Tue Feb  6 20:00:13 2007  Ben Pfaff  <blp@gnu.org>
166
167         * misc.h [!HAVE_ISINF] (isinf): Define only if isinf is not
168         defined as a macro, because mingw seems to have the macro without
169         the function.
170         [!HAVE_ISNAN] (isnan): Ditto, for symmetry only.
171         [!AHVE_FINITE] (finite): Ditto, for symmetry only.
172
173 Tue Feb  6 19:58:46 2007  Ben Pfaff  <blp@gnu.org>
174
175         * compiler.h (PRINTF_FORMAT): Use __printf__ instead of printf to
176         avoid problem with "#define printf libintl_printf" that libintl is
177         fond of doing.
178         (SCANF_FORMAT): Ditto, for symmetry only.
179
180 Tue Feb  6 19:47:10 2007  Ben Pfaff  <blp@gnu.org>
181
182         * float-format.h: [FPREP_IEEE754] [WORDS_BIGENDIAN] Add missing
183         comma.
184
185 Wed Jan 24 21:13:32 2007  Ben Pfaff  <blp@gnu.org>
186
187         * abt.c: New file.
188
189         * abt.h: New file.
190
191         * automake.mk: Add abt.c, abt.h to sources.
192
193 Sun Jan 14 21:44:18 2007  Ben Pfaff  <blp@gnu.org>
194
195         * automake.mk: Add deque.h to sources.
196         
197         * deque.h: New file.
198
199 Wed Jan 10 06:49:38 2007  Ben Pfaff  <blp@gnu.org>
200
201         * automake.mk: Add heap.c, heap.h to sources.
202
203         * heap.c: New file.
204
205         * heap.h: New file.
206
207 Sun Dec 10 13:54:03 2006  Ben Pfaff  <blp@gnu.org>
208
209         * str.c (ss_tokenize): Skip the first delimiter character
210         following the token.  Otherwise, changing delimiters from token to
211         token can't have a sensible effect, because we'll get the previous
212         delimiter as part of the next token.
213         (ss_match_string): New function.
214
215 Sat Dec  9 18:48:55 2006  Ben Pfaff  <blp@gnu.org>
216
217         * misc.h (macro range): Removed, as it was unused.
218
219 Sat Dec  9 07:19:01 WST 2006 John Darrington <john@darrington.wattle.id.au>
220
221         * array.c: Removed gratuitous #include
222
223 Thu Dec  7 20:33:23 WST 2006 John Darrington <john@darrington.wattle.id.au>
224
225         * getl.c getl.h : Changed signature of create function to take a 
226         string indicating the initial include path.
227
228 Sun Dec  3 11:36:10 2006  Ben Pfaff  <blp@gnu.org>
229
230         * str.h (SS_LITERAL_INITIALIZER): Cast the string literal to "char
231         *".  This normally does nothing but when GCC's -Wwrite-strings is
232         used it fixes a warning that otherwise can't be avoided.
233
234 Sun Dec  3 11:35:35 2006  Ben Pfaff  <blp@gnu.org>
235
236         * str.c (ss_alloc_substring_pool): New function.
237         (ss_alloc_uninit_pool) New function.
238
239 Sun Dec  3 11:28:06 2006  Ben Pfaff  <blp@gnu.org>
240
241         * getl.h: (enum getl_syntax) New enumeration to distinguish
242         between "batch" and "interactive" in a clearer way than a bool.
243         (struct getl_interface) Add an arg to "read" to return the
244         intended syntax mode.  Add an arg to "filter" to specify the
245         syntax mode of the line to filter.
246
247         * getl.c (do_read_line): Instead of returning the syntax type of
248         the line read based on whether the source itself is interactive,
249         return it based on whether the line itself should be treated as
250         having batch or interactive syntax.  Also, adapt interface to the
251         new interfaces of lex_init() and getl_interface.
252
253 Wed Nov 29 19:35:44 WST 2006 John Darrington <john@darrington.wattle.id.au>
254
255         * getl.c getl.h: New files. Created interface from base of 
256         language/line-buffer.[ch]
257
258         * msg-locator.c msg-locator.h: New files. Moved from
259         language/line-buffer.[ch]
260
261 Fri Nov 24 17:27:00 2006  Ben Pfaff  <blp@gnu.org>
262
263         * misc.h: (min) Removed.  All references updated to use MIN, from
264         minmax.h provided by gnulib.
265         (max) Ditto (for MAX).
266
267 Sun Nov 19 09:22:26 2006  Ben Pfaff  <blp@gnu.org>
268
269         * str.c (ss_get_long): New function.
270         (ss_compare_case) Ditto.
271         (ss_equals) Ditto.
272         (ss_equals_case) Ditto.
273
274 Tue Oct 31 19:28:19 2006  Ben Pfaff  <blp@gnu.org>
275
276         * str.h: [!HAVE_STRCHR] Drop compatibility code, because now we
277         assume a C89 compliant library.  (Gnulib makes this assumption so
278         we might as well too.)
279         [!HAVE_STRRCHR] Ditto.
280
281 Thu Oct 26 20:19:50 2006  Ben Pfaff  <blp@gnu.org>
282
283         * automake.mk: Add the new files.
284
285         * legacy-encoding.c: New file.
286
287         * legacy-encoding.h: New file.
288
289         * float-format.c: New file.
290
291         * float-format.h: New file.
292
293         * integer-format.c: New file.
294
295         * integer-format.h: New file.
296
297 Sun Oct 15 09:49:50 WST 2006 John Darrington <john@darrington.wattle.id.au>
298
299         * hash.c hash.h: Added hsh_create_pool, a hash which uses a pool
300         for its memory allocation.
301
302 Mon Jul 31 15:49:46 2006  Ben Pfaff  <blp@gnu.org>
303
304         * compiler.h: (macro CONST_FUNCTION) New macro.
305         (macro PURE_FUNCTION) New macro.
306
307 Sun Jul 16 21:07:35 2006  Ben Pfaff  <blp@gnu.org>
308
309         * message.c: (static int messages_disabled) New variable.
310         (msg_emit) Don't emit the message if messages are disabled.
311         (msg_disable) New function.
312         (msg_enable) New function.
313
314         * str.c: (free_string) New function.
315         (ds_register_pool) New function.
316         (ds_unregister_pool) New function.
317         (ds_set_length) New function.
318
319 Mon Jul 10 17:26:58 WST 2006 John Darrington <john@darrington.wattle.id.au>
320
321         * llx.c: #included compiler.h and removed explicit preprocessor cruft.
322
323 Fri Jul  7 20:01:26 2006  Ben Pfaff  <blp@gnu.org>
324
325         * automake.mk: (src_libpspp_libpspp_a_SOURCES) Add assertion.h.
326         
327         * assertion.h: New file.  Replaced usage of assert(0) and abort()
328         with NOT_REACHED() from this file throughout the source tree.
329
330         * message.c: (request_bug_report_and_abort) Revise message printed
331         to include request to include lines above the message, which
332         should include an assertion failure message in many cases.
333         (msg_assert_fail) Removed.
334
335         * message.h: (assert) Removed.
336         (request_bug_report_and_abort) Mark NO_RETURN.
337
338 Mon Jul  3 09:36:42 WST 2006 John Darrington <john@darrington.wattle.id.au>
339
340         * i18n.c: Made character conversion tolerant of failure to create the 
341         necessary iconv structs.
342
343 Sat Jul  1 15:32:54 2006  Ben Pfaff  <blp@gnu.org>
344
345         * automake.mk: (src_libpspp_libpspp_a_SOURCES) Add new files.
346
347         * ll.c: New file.
348
349         * ll.h: New file.
350
351         * llx.c: New file.
352
353         * llx.h: New file.
354
355 Sun Jun 25 22:35:28 2006  Ben Pfaff  <blp@gnu.org>
356
357         Optimize rehashing: we know that none of the entries in the hash
358         table are equal, so we need not compare them to each other during
359         rehashing.
360         
361         * hash.c: (locate_empty_entry) New function.
362         (rehash) Use locate_empty_entry() instead of
363         locate_matching_entry().
364
365 Fri Jun  9 14:03:29 2006  Ben Pfaff  <blp@gnu.org>
366
367         Reform string library.
368         
369         * str.c (ss_empty): New function.  Replaces some uses of ls_init()
370         or ls_null().
371         (ss_cstr) New function.  Replaces some uses of ls_init().
372         (ss_buffer) New function.  Replaces some uses of ls_init().
373         (ss_substr) New function.
374         (ss_head) New function.
375         (ss_tail) New function.
376         (ss_alloc_substring) New function.  Replaces use of ls_create().
377         (ss_alloc_uninit) New function.
378         (ss_dealloc) New function.  Replaces use of ls_destroy().
379         (ss_truncate) New function.
380         (ss_rtrim) New function.
381         (ss_ltrim) New function.
382         (ss_trim) New function.
383         (ss_chomp) New function.
384         (ss_separate) New function.
385         (ss_tokenize) New function.
386         (ss_advance) New function.
387         (ds_create) Renamed ds_init_cstr().  Updated all callers.
388         (ss_match_char) New function.
389         (ss_get_char) New function.
390         (ss_get_until) New function.
391         (ss_get_chars) New function.
392         (ss_is_empty) New function.
393         (ss_length) New function.  Replaces ls_length().
394         (ss_data) New function.  Replaces many uses of ls_c_str().
395         (ss_end) New function.  Replaces ls_end().
396         (ss_at) New function.
397         (ss_first) New function.
398         (ss_last) New function.
399         (ss_span) New function.
400         (ss_cspan) New function.
401         (ss_compare) New function.
402         (ss_pointer_to_position) New function.
403         (ss_xstrdup) New function.
404         (ds_init) Renamed ds_init_empty().  All callers updated.
405         (ds_init_string) New function.
406         (ds_init_substring) Changed interface to take a struct substring.
407         Updated all callers.
408         (ds_init_cstr) New function.  Replaces ds_create().  All callers
409         updated.
410         (ds_assign_substring) Changed interface to take a struct
411         substring.  Updated all callers.
412         (ds_assign_buffer) Removed.  Changed all callers to use
413         ds_assign_substring().
414         (ds_assign_c_str) Renamed ds_assign_cstr().  All callers updated.
415         (ds_ss) New function.
416         (ds_substr) New function.
417         (ds_head) New function.
418         (ds_tail) New function.
419         (ds_rtrim) New function.  Replaces ds_rtrim_spaces().  All callers
420         updated.
421         (ds_ltrim) New function.  Replaces ds_ltrim_spaces().  All callers
422         updated.
423         (ds_trim) New function.  Replaces ds_trim_spaces().  All callers
424         updated.
425         (ds_rtrim_spaces) Removed.
426         (ds_ltrim_spaces) Removed.
427         (ds_trim_spaces) Removed.
428         (ds_separate) Changed interface to use substrings.  All callers
429         updated.
430         (ds_tokenize) Changed interface to use substrings.  All callers
431         updated.
432         (ds_c_str) Renamed ds_cstr().  All callers updated.
433         (ds_span) Changed interface to use substring for SKIP_SET and
434         dropped OFS.  All callers updated.
435         (ds_cspan) Changed interface to use substring for STOP_SET and
436         dropped OFS.  All callers updated.
437         (ds_find_char) New function.
438         (ds_compare) New function.
439         (ds_pointer_to_position) New function.
440         (ds_xstrdup) New function.  Replaced all users of
441         xstrdup(ds_c_str(s)) by a call to this function.
442         (ds_gets) Renamed ds_read_line().  All callers updated.
443         (ds_get_config_line) Renamed ds_read_config_line().  All callers
444         updated.
445         (ds_puts) Renamed ds_put_cstr().  All callers updated.
446         (ds_put_substring) New function.  Replaces ds_concat().  All
447         callers updated.
448         (ds_concat) Removed.
449         (ds_append_uninit) Renamed ds_put_uninit().  All callers updated.
450         (ds_printf) Renamed ds_put_format().  All callers updated.
451         (ds_vprintf) Renamed ds_put_vformat().  All callers updated.
452         (ds_putc) Renamed ds_put_char().  All callers updated.
453         (ds_putc_multiple) Renamed ds_put_char_multiple().  All callers
454         updated.
455         (ls_create) Removed.  Replaced by ss_alloc_substring().
456         (ls_create_buffer) Removed.  Replaced by ss_alloc_substring().
457         (ls_init) Removed.  Replaced by ss_buffer().
458         (ls_shallow_copy) Removed.  Just use assignment.
459         (ls_destroy) Removed.  Replaced by ss_dealloc().
460         (ls_null) Removed.
461         (ls_null_p) Removed.
462         (ls_empty_p) Removed.  Replaced by ss_is_empty().
463         (ls_c_str) Removed.
464         (ls_end) Removed.  Replaced by ss_end().
465
466         * str.h (struct fixed_string): Renamed struct substring, updated
467         all users.
468         (CC_SPACES) New macro.
469         (CC_DIGITS) Ditto.
470         (CC_XDIGITS) Ditto.
471         (CC_LETTERS) Ditto.
472         (CC_ALNUM) Ditto.
473         (SS_EMPTY_INITIALIZER) Ditto.
474         (SS_LITERAL_INITIALIZER) Ditto.
475         (struct string) Removed string, length members.  Add substring
476         member.
477         (DS_INITIALIZER) Rename DS_EMPTY_INITIALIZER.
478
479 Tue May 30 19:45:12 WST 2006 John Darrington <john@darrington.wattle.id.au>
480
481         * i18n.c i18n.h: New files.
482
483 Tue May 16 06:50:35 2006  Ben Pfaff  <blp@gnu.org>
484
485         * automake.mk (src/libpspp/version.c): Removed groff_font_path,
486         which is no longer used.
487
488         * message.c (request_bug_report_and_abort): Don't print
489         groff_font_path, which no longer exists.
490
491         * version.h (locale_dir): Removed groff_font_path.
492
493 Sun May 14 22:06:53 2006  Ben Pfaff  <blp@gnu.org>
494
495         * str.c (spprintf): Moved definition of spprintf() here, from
496         str.h.
497
498         * str.h: (nsprintf) Removed.  Changed all users to use sprintf()
499         instead.
500         (nvsprintf) Removed.  Changed all users to use vsprintf() instead.
501
502 Sun May 14 20:52:20 2006  Ben Pfaff  <blp@gnu.org>
503
504         * str.c (ds_init): Remove `capacity' argument and just initialize
505         the string to a capacity of zero.  Updated all callers.
506
507 Tue May  9 09:56:57 2006  Ben Pfaff  <blp@gnu.org>
508
509         * va_copy.h: Removed.  Now use va_copy() provided by gnulib
510         instead.
511
512         * automake.mk: (src_libpspp_libpspp_a_SOURCES) Removed va_copy.h.
513
514 Sun May  7 18:17:32 2006  Ben Pfaff  <blp@gnu.org>
515
516         * pool.c (pool_vasprintf): New function.
517         (pool_asprintf) New function.
518
519 Sun May  7 17:09:54 2006  Ben Pfaff  <blp@gnu.org>
520
521         * compiler.h: (macro WARN_UNUSED_RESULT) New macro.
522
523 Sun May  7 14:32:25 2006  Ben Pfaff  <blp@gnu.org>
524
525         * va_copy.h: New header.
526
527         * str.c: Use header instead of inlining va_copy() macro
528         implementation.
529
530 Sun May  7 10:06:29 WST 2006 John Darrington <john@darrington.wattle.id.au>
531
532         * array.c array.h: Constness of sort.
533
534 Thu May  4 18:01:37 WST 2006 John Darrington <john@darrington.wattle.id.au>
535
536         * message.c message.h: Added functions to create and copy a msg.
537
538 Tue May  2 15:41:50 2006  Ben Pfaff  <blp@gnu.org>
539
540         * str.c (ds_append_uninit): No need to add 1 to arg passed to
541         ds_extend(), because the argument does not include space for a
542         null terminator.  Also, fix warning.
543
544 Tue Apr 25 11:07:19 2006  Ben Pfaff  <blp@gnu.org>
545
546         Finish reforming error message support.  In this phase, move
547         message.c into libpspp.
548         
549         * message.c: Move here from src/.  Also remove a few unneeded
550         headers.
551
552         * automake.mk (src_libpspp_libpspp_a_SOURCES): Add message.c. 
553
554 Tue Apr 25 10:54:44 2006  Ben Pfaff  <blp@gnu.org>
555
556         Continue reforming error message support.  In this phase, drop
557         actual message printing from core code, substituting a callback,
558         and add the callback to each UI.  Also, move verbose_msg() into
559         its own module.
560
561         * automake.mk (src_libpspp_libpspp_a_SOURCES): Added
562         verbose-msg.c, verbose-msg.h.
563
564         * verbose-msg.c: New file.
565
566         * verbose-msg.h: New file.
567
568 Mon Apr 24 17:26:47 2006  Ben Pfaff  <blp@gnu.org>
569
570         Continue reforming error message support.  In this phase, rename
571         all the message functions and types to start with "msg", except
572         for the ones that will be moving to other modules anyway.
573
574         All references to the identifiers below were updated likewise.
575         
576         * message.h: (enum file_locator) Renamed `enum msg_locator'.
577         (struct error) Renamed `struct msg'.
578         (err_assert_fail) Renamed msg_assert_fail().
579
580 Sun Apr 23 22:07:06 2006  Ben Pfaff  <blp@gnu.org>
581
582         Continue reforming error message support.  In this phase, get rid
583         of message "titles" and put the message text in `struct error'.
584         Now `struct error' encapsulates a message more properly.
585         
586         * message.h: (struct error) Remove `title' member.  Add `text'
587         member.
588         
589 Sun Apr 16 20:43:35 2006  Ben Pfaff  <blp@gnu.org>
590
591         Continue reforming error message support.  In this phase, we
592         divide the classification of messages along "category" and
593         "severity" axes.
594
595         * message.h: (enum msg_class) Named this set of enumerations.
596         (enum msg_category) New enum: MSG_GENERAL, MSG_SYNTAX, MSG_DATA.
597         (enum msg_severity) New enum: MSG_ERROR, MSG_WARNING, MSG_NOTE.
598         (msg_class_to_category) New inline function.
599         (msg_class_to_severity) New inline function.
600         (msg_class_from_category_and_severity) New inline function.
601         (struct error) Removed `class' member, added `category',
602         `severity'.  Updated all users of this struct to use the new
603         members.
604
605 Sun Apr 16 20:33:19 2006  Ben Pfaff  <blp@gnu.org>
606
607         * str.c (ds_vprintf): Don't try to write into the string if it is
608         null.
609
610 Sun Apr 16 18:52:41 2006  Ben Pfaff  <blp@gnu.org>
611
612         GNU standards require "file name" instead of "filename" in
613         documentation.  It's nice for our code to follow the convention
614         too.
615         
616         * message.h: (struct file_locator) Rename filename member to
617         file_name.  Updated all references.
618
619 Sun Apr 16 16:05:43 2006  Ben Pfaff  <blp@gnu.org>
620
621         Continue reforming error message support.  In this phase, we get
622         rid of VM() and the other msg() support for "verbosity", replacing
623         it by a new function verbose_msg().
624
625         * message.h: (enum ERR_CLASS_COUNT) Renamed ERR_CLASS_CNT.
626         (enum ERR_CLASS_MASK) Removed.
627         (enum ERR_VERBOSITY_SHIFT) Removed.
628         (enum ERR_VERBOSITY_MASK) Removed.
629         (macro VM) Removed.
630
631 Sun Apr 16 11:48:07 2006  Ben Pfaff  <blp@gnu.org>
632
633         Start reforming error message support.  In this phase, we get rid
634         of "installation errors" and change all uses of msg() in the
635         output drivers to uses of error() or error_at_line().
636
637         * message.h: Remove IE, IS enums.
638
639 Mon Apr  3 11:10:21 2006  Ben Pfaff  <blp@gnu.org>
640
641         * str.c: (ds_separate) Change interface for cleanliness and
642         consistency with ds_tokenize(), and rewrite to shorten and
643         simplify.  Updated all callers.
644         (ds_tokenize) New function.
645
646 Fri Mar 31 10:38:46 2006  Ben Pfaff  <blp@gnu.org>
647
648         Add freaderror() analogous to fwriteerror() in gnulib.
649
650         * freaderror.c: New file.
651
652         * freaderror.h: New file.
653
654 Thu Mar 30 16:15:37 2006  Ben Pfaff  <blp@gnu.org>
655
656         * str.c: (ds_create) Adjust capacity selection.
657         (ds_init) Use MAX macro for clarity.
658         (ds_create_substr) Rewrote.
659         (ds_replace) Renamed ds_assign_c_str(), reimplemented.  Changed
660         all callers to use a ds_assign_*() function.
661         (ds_init_substring) New function.
662         (ds_assign_string) New function.
663         (ds_assign_substring) New function.
664         (ds_assign_buffer) New function.
665         (ds_assign_c_str) New function.
666         (ds_truncate) Rewrote for clarity.
667         (ds_rpad) Reimplement in terms of ds_putc_multiple().
668         (ds_ltrim_spaces) Reimplement.
669         (ds_trim_spaces) New function.
670         (ds_separate) New function.
671         (ds_c_str) Make tolerant of null pointer, allowing static
672         initialization of strings.
673         (ds_find) Rename ds_span(), change interface.
674         (ds_n_find) Rename ds_cspan(), change interface.
675         (ds_at) New function.
676         (ds_first) Reimplement in terms of ds_at().
677         (remove_comment) New function.
678         (ds_get_config_line) Reimplement in terms of other functions.
679         Change type of LINE_NUMBER parameter.  Updated all callers.
680         (ds_vprintf) Modify for clarity.
681         (ds_putc) Better to be safe than sorry.
682         (ds_putc_multiple) New function.
683
684         * str.h: (struct string) Reorder members.
685         (macro DS_INITIALIZER) New macro that can be used to initialize a
686         string (as empty).
687         (ds_c_str) Remove inline version.
688
689 Tue Mar 28 13:49:11 WST 2006 John Darrington <john@darrington.wattle.id.au>
690
691         * str.[ch]: New functions ds_create_substr, ds_find, ds_n_find, 
692         ds_ltrim_spaces
693
694 Sat Mar  4 12:59:01 2006  Ben Pfaff  <blp@gnu.org>
695
696         * compiler.h: New file.
697
698 Sat Mar  4 11:55:16 2006  Ben Pfaff  <blp@gnu.org>
699
700         * str.h: Now assume that sprintf() returns the correct value.
701         Always implement spprintf as a static inline function.  Change
702         nsprintf, nvsprintf to simple macros that call sprintf, vsprintf.
703
704         * str.c: Remove spprintf, nsprintf, nvsprintf conditional
705         definitions.
706
707 Thu Mar  2 08:40:33 WST 2006 John Darrington <john@darrington.wattle.id.au>
708         
709         * Moved files from src directory