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