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