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