2003-07-14 Matthias Koeppe <mkoeppe@mail.math.uni-magdeburg.de>
[bpt/guile.git] / srfi / ChangeLog
CommitLineData
e5a74c26
KR
12003-07-08 Kevin Ryde <user42@zip.com.au>
2
3 * srfi-1.c, srfi-1.h (scm_srfi1_delete, scm_srfi1_delete_x,
4 scm_srfi1_delete_duplicates, scm_srfi1_delete_duplicates_x): New
5 functions. scm_srfi1_delete_x is derived from scm_delete_x.
6 * srfi-1.scm (delete, delete!, delete-duplicates, delete-duplicates!):
7 Remove.
8
f2478375
KR
92003-06-07 Kevin Ryde <user42@zip.com.au>
10
11 * srfi-6.scm: #:re-export open-input-string, open-output-string and
12 get-output-string, for the benefit of applications wanting to use
13 #:select on the module.
14
2e945bcc
SJ
152003-05-29 Stefan Jahn <stefan@lkcc.org>
16
17 * Makefile.am (libguile_srfi_srfi_1_la_LDFLAGS,
18 libguile_srfi_srfi_4_la_LDFLAGS,
19 libguile_srfi_srfi_13_14__la_LDFLAGS): Added the -no-undefined
20 option for the mingw32 build.
21
a658e41b
KR
222003-05-13 Kevin Ryde <user42@zip.com.au>
23
24 * srfi-1.scm (delete): Fix predicate arg order to match srfi-1 spec.
25
9c8721b5
KR
262003-05-10 Kevin Ryde <user42@zip.com.au>
27
28 * srfi-1.scm (take): Make this an alias for list-head.
29 (drop): Make this an alias for list-tail.
30
a1a5dfa8
NJ
312003-04-30 Neil Jerram <neil@ossau.uklinux.net>
32
33 * srfi-34.scm: New file.
34
2d2f76fc
MV
352003-04-23 Marius Vollmer <mvo@zagadka.de>
36
37 * srfi-1.scm: Removed stray "o" from exports list.
38
1685446c
DH
392003-04-21 Dirk Herrmann <D.Herrmann@tu-bs.de>
40
41 * srfi-1.c (srfi1_ilength): Prefer !SCM_CONSP over SCM_NCONSP.
42 Now, guile itself does not include any calls to SCM_NCONSP any
43 more.
44
73be1d9e
MV
452003-04-05 Marius Vollmer <mvo@zagadka.de>
46
47 * Changed license terms to the plain LGPL thru-out.
48
e3c0c3b9
RB
492003-03-25 Rob Browning <rlb@defaultvalue.org>
50
51 * srfi-4.c: replace typedefs for basic types with typedefs using
52 new standard int types (i.e. scm_t_uint8, etc.) -- should probably
53 remove typedefs altogether later.
54
b8b0abf0
MD
552003-03-24 Mikael Djurfeldt <djurfeldt@nada.kth.se>
56
57 * srfi-1.scm: Re-export all srfi-1 bindings implemented by the
58 core. (Thanks to Kevin Ryde.)
59
d57da08b
MD
602003-03-12 Mikael Djurfeldt <djurfeldt@nada.kth.se>
61
62 * srfi-13.scm: Mark replacements.
63
64 * srfi-17.scm: Mark replacements.
65
f595ccfe
MD
662003-03-11 Mikael Djurfeldt <djurfeldt@nada.kth.se>
67
c614a00b
MD
68 * srfi-1.scm (iota, map, for-each, map-in-order, list-index,
69 member, delete, delete!, assoc): Marked as replacements.
70 (filter, filter!): Removed. (Now implemented in the core.)
f595ccfe 71
a48d60b1
MD
722003-03-06 Mikael Djurfeldt <djurfeldt@nada.kth.se>
73
74 * srfi-1.c (scm_init_srfi_1): Extend root module map and for-each
75 with the versions in this module using
76 scm_c_extend_primitive_generic.
77
f9ac1c2d
MD
782003-02-03 Mikael Djurfeldt <djurfeldt@nada.kth.se>
79
80 * srfi-1.c (srfi1_for_each): Corrected argument checking for the
81 case of two argument lists. (Thanks to Kevin Ryde.)
82
b2cbe8d8
RB
832002-12-08 Rob Browning <rlb@defaultvalue.org>
84
85 * Makefile.am (srfidir): VERSION -> GUILE_EFFECTIVE_VERSION.
86
2ab05d78
MV
872002-12-02 Marius Vollmer <mvo@zagadka.ping.de>
88
89 * Makefile.am (srfiinclude_HEADERS): Added srfi-1.h.
90
ee6aac97
MD
912002-12-01 Mikael Djurfeldt <mdj@linnaeus>
92
93 * srfi-1.scm: Load srfi-1 extension.
7692d26b
MD
94 (map, map-in-order, for-each, member, assoc): Replaced by
95 primitives in srfi-1.c.
96 (map1): Defined as `map'.
ee6aac97
MD
97
98 * Makefile.am: Added rules for srfi-1.c.
99
100 * srfi-1.c, srfi-1.h: New files.
101
beac3691
MV
1022002-05-06 Marius Vollmer <mvo@zagadka.ping.de>
103
104 * srfi-13.c (scm_string_tokenize): Instead of using "isgraphic" as
105 the subtitute for char-set:graphic when then token-set hsa been
106 defaulted, grab the real char-set:graphic from (srfi srfi-14).
107
108 * srfi-14.h (SCM_CHARSET_GET): Cast IDX to unsigned char so that
109 it works for 8-bit characters. Thanks to Matthias Koeppe! No,
110