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