* Rewrote string->number stuff.
[bpt/guile.git] / ice-9 / ChangeLog
CommitLineData
11057044
MV
12001-07-24 Marius Vollmer <mvo@zagadka.ping.de>
2
3 * syncase.scm (psyncomp): Removed, it is now in
4 compile-psyntax.scm.
5
62001-07-23 Marius Vollmer <mvo@zagadka.ping.de>
7
8 * Makefile.am (psyntax.pp): Enable rule for psyntax.pp only in
9 maintainer mode. Use compile-psyntax.scm for actual compilation.
10 Make sure the uninstalled guile is used.
11 (EXTRA_DIST): Distribute compile-psyntax.scm
12 * compile-psyntax.scm: New file.
13
e39bbe80
MG
142001-07-18 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
15
16 * and-let-star.scm, debug.scm, debugger.scm, history.scm,
17 lineio.scm, null.scm, optargs.scm, r4rs.scm, r5rs.scm,
18 receive.scm, safe-r5rs.scm, streams.scm: Updated copyright notice.
19
90ee03da
MG
202001-07-17 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
21
22 * r5rs.scm: Use `re-export' instead of `export' for re-exported
23 primitives. Thanks Neil!
24
22647fef
MV
252001-07-13 Marius Vollmer <mvo@zagadka.ping.de>
26
27 * safe-r5rs.scm: Use `re-export' instead of `export' for
28 re-exported core bindings. Do not re-export `numerator',
29 `denominator' and `rationalize' since Guile does not have them.
30 Continue to use `export' for `null-environment'.
31
32 * null.scm: Use `re-export' instead of `export' for re-exported
33 core bindings. Do not export `unquote' and `unquote-splicing'
34 since there aren't definitions for them.
35
36 * boot-9.scm (compile-interface-spec): Bug fix: the keyword
37 argument is "renamer" not "rename".
38
4aea9e7b
RB
392001-07-09 Rob Browning <rlb@defaultvalue.org>
40
41 * boot-9.scm: Fixed the sense of the error message when read-eval?
42 is #f. Thanks to Matthias for catching this.
43
8630fdfc
RB
442001-07-06 Rob Browning <rlb@defaultvalue.org>
45
46 * boot-9.scm: added fix suggested by Matthias for #. read
47 extension -- now only works if read-eval? is not #f.
48
197edeea
DH
492001-06-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
50
51 * arrays.scm: Don't install a read-hash-extension for 'b': #b
52 is already defined by R5RS. Further, there is already a working
53 read syntax for bitvectors, starting with #*.
54
5dc13e98
MG
552001-06-30 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
56
57 * Makefile.am (ice9_sources): Removed tags.scm.
58
59 * tags.scm: Removed file.
60
941614c6
NJ
612001-06-29 Neil Jerram <neil@ossau.uklinux.net>
62
63 Changes to support tracing other than inside the repl-stack that
64 is set up by the REPL code in boot-9.scm.
65
66 * debug.scm (trace-entry, trace-exit): Conditionalize tracing on
67 whether the current stack id is in `traced-stack-ids'.
68 (traced-stack-ids, trace-all-stacks?, trace-stack, untrace-stack):
69 New.
70
4cda41f6
MV
712001-06-27 Marius Vollmer <mvo@zagadka.ping.de>
72
73 * common-list.scm (member-if): Put in docstring for member-if, it
74 was a cut-n-paste error previously.
75
d95c0b76
NJ
762001-06-26 Neil Jerram <neil@ossau.uklinux.net>
77
78 * debug.scm (trace): Set evaluator trap options to handle tracing.
79 Don't reset trace-level to 0.
80
81 * boot-9.scm (lazy-handler-dispatch): Remove enter-frame-handler,
82 apply-frame-handler and exit-frame-handler. (They're replaced by
83 evaluator trap options.)
84
fc7a9e81
ML
852001-06-25 Michael Livshin <mlivshin@bigfoot.com>
86
87 * streams.scm (stream-for-each-many): typo fix.
88
f6581113
MV
892001-06-25 Marius Vollmer <mvo@zagadka.ping.de>
90
91 * boot-9.scm (re-export-syntax): New.
92
eb6c2de8
MV
932001-06-16 Marius Vollmer <mvo@zagadka.ping.de>
94
95 * boot-9.scm (system-error-errno): New.
96
0f002b27
MV
972001-06-14 Marius Vollmer <mvo@zagadka.ping.de>
98
99 * common-list.scm (remove-if, remove-if-not): Fix typo: use
100 `pred', not `pred?', in the body.
101
60850aed
TTN
1022001-06-13 Thien-Thi Nguyen <ttn@revel.glug.org>
103
95717232
TTN
104 * match.scm:
105 No longer use module `(ice-9 slib)'.
106 Use module `(ice-9 pretty-print)'.
107 No longer require `pretty-print'.
108
109 (slib:error): Delete.
110 (match:error, match:syntax-err): Rewrite.
111
112 Thanks to Dale P. Smith.
113
b4b50361 114 * README: New file.
95717232 115
60850aed
TTN
116 * common-list.scm:
117 Clean up some docstrings; nfc.
118 Add Commentary.
119 Update copyright.
120
7c95e366
MV
1212001-06-11 Marius Vollmer <mvo@zagadka.ping.de>
122
123 * boot-9.scm: Use `begin-deprecated' instead of testing
124 `include-deprecated-features' when conditionally using the (ice-9
125 rdelim) module. See below.
126
495c67e5
GH
1272001-06-10 Gary Houston <ghouston@arglist.com>
128
129 * boot-9.scm: use the (ice-9 rdelim) module if
130 include-deprecated-features is true.
131
6a9003d3
MV
1322001-06-09 Marius Vollmer <mvo@zagadka.ping.de>
133
134 * pretty-print.scm (generic-write): Use `object->string' to print
135 unknown objects.
136
137 * optargs.scm (lambda*): Make sure that BODY is always put into a
138 real body context so that it can contain internal definitions.
139