* Makefile.am (srfi_DATA): Added srfi-9.scm.
[bpt/guile.git] / srfi / ChangeLog
1 2001-04-27 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
2
3 * Makefile.am (srfi_DATA): Added srfi-9.scm.
4
5 * srfi-9.scm: New file. Exports `define-record-type'.
6
7 2001-04-26 Rob Browning <rlb@cs.utexas.edu>
8
9 * Makefile.am (srfi_DATA): added srfi-6.scm.
10 (srfi_DATA): added srfi-11.scm.
11 (srfi_DATA): added srfi-8.scm.
12 (srfi_DATA): added srfi-2.scm.
13
14 * srfi-11.scm: new file - exports let-values and let*-values.
15
16 * srfi-6.scm: new file - guile already has srfi-6 procedures
17 loaded by default, so this is a dummy file right now.
18
19 * srfi-8.scm: new file - exports receive.
20
21 * srfi-2.scm: new file - just use/export (ice-9 and-let-star)
22
23 2001-04-26 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
24
25 Changed two procedure names to match final SRFI document. Thanks
26 to Rob Browning for spotting this.
27
28 * srfi-13.scm (string-concatenate-reverse),
29 (string-concatenate-reverse/shared): Rename from
30 reverse-string-concatenate[/shared].
31
32 * srfi-13.c (scm_string_concatenate_reverse_shared): Renamed from
33 scm_reverse_string_concatenate_shared.
34 (scm_string_concatenate_reverse): Renamed from
35 scm_reverse_string_concatenate.
36
37 2001-04-25 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
38
39 * configure.in, autogen.sh: Removed.
40
41 * srfi-13.c (scm_string_replace): Take sizeof (char) into account
42 when using memmove().
43
44 * srfi-14.h: Added prototypes for all exported procedures..
45
46 * srfi-13.c: Include srfi-13.h
47
48 * srfi-13.h: New file containing the prototypes.
49
50 * Makefile.am: Removed guile-srfi.texi and info_TEXINFOS variable.
51 (libguile_srfi_srfi_13_14_la_SOURCES): Added srfi-14.h, so it gets
52 distributed.
53 (libguile_srfi_srfi_13_14_la_SOURCES): Added srfi-13.h.
54
55 2001-04-24 Neil Jerram <neil@ossau.uklinux.net>
56
57 * Makefile.am: Fixed "srf-14.x" typo.
58
59 2001-04-24 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
60
61 * guile-srfi.texi: Removed, because merged with the GRM.
62
63 * guile-srfi.texi: The docs are now up to date with the
64 implementation and have new introductory material.
65
66 2001-04-23 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
67
68 Integrated the guile-srfi package into the Guile distribution.
69
70 * srfi-13.c: All procedures so specified in the SRFI now accept
71 character set arguments.
72
73 * Makefile.am: Snarfed some variables from the guile-readline
74 directory.
75
76 * srfi-14.c, srfi-14.h: Add prefix SCM_ to exported macros.
77
78 * srfi-13.scm, srfi-14.scm, srfi-13.c, srfi-14.c, srfi-14.h,
79 configure.in, Makefile.am: Added FSF copyright and Guile license
80 information.
81
82 * srfi-13.c, srfi-14.c: Include srfi-14.h.
83 (scm_init_srfi_13_14): Initialize the complete module, if not
84 already done so.
85
86 * srfi-14.h: New file.
87
88 * srfi-13.scm, srfi-14.scm: Load new combined library.
89
90 * Makefile.am: Build only one library,
91 `libguile-srfi-srfi-13-14.la'
92
93 2001-04-04 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
94
95 * guile-srfi.texi: Integrated the SRFI-14 documentation.
96
97 * srfi-14.c, srfi-14.scm: Made the procedures and variables
98 compliant to the final SRFI document.
99
100 * Renamed the package to guile-srfi.
101
102 2001-04-03 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
103
104 * NEWS: New section for 0.0.3.
105
106 * configure.in, README, guile-srfi-13.texi: Bumped version number
107 to 0.0.3.
108
109 * Released version 0.0.2.
110
111 * Makefile.am: Added rules for builing the SRFI-14 library.
112
113 * srfi-14.c, srfi-14.scm: New files, implementing SRFI-14
114 (character set library).
115
116 2001-03-27 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
117
118 * README: Updated procedure and incompatibility list.
119
120 * srfi-13.c (string_upcase_x, scm_string_upcase_xS),
121 (scm_string_upcase, string_downcase_x, scm_string_downcase_xS),
122 (scm_string_downcaseS, string_titlecase_x),
123 (scm_string_titlecase_x, scm_string_titlecase),
124 (scm_string_fill_xS, scm_string_copyS, scm_string_to_listS): New
125 procedures.
126
127 * srfi-13.scm: Export new case mapping procedures.
128
129 * guile-srfi-13.texi (What cannot be done): Removed case mapping
130 procedures from incompatibility list.
131 (Case Mapping): New section for case mapping procedures.
132
133 2001-03-26 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
134
135 * NEWS: New section for 0.0.2
136
137 * configure.in, README, guile-srfi-13.texi: Bumbed version number
138 to 0.0.2
139
140 * Released version 0.0.1.
141
142 * README: Made procedure list up-to-date.
143
144 * guile-srfi-13.texi: Fixed typos, completed reference and added
145 introductory blurb.
146
147 * srfi-13.c, srfi-13.scm: Filled in the last missing pieces.
148
149 2001-03-22 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
150
151 * Started guile-srfi-13 package. Files are copied from the
152 guile-gdbm and slightly modified.