* boot-9.scm (define-private, export-syntax, export-syntax):
[bpt/guile.git] / ice-9 / ChangeLog
CommitLineData
6aa9ea7c
DH
12002-11-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
2
3 * boot-9.scm (define-private, export-syntax, export-syntax):
4 Fixed my previous fix (blush).
5
ab382f52
DH
62002-11-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
7
8 * boot-9.scm (define-private, export-syntax, export-syntax):
9 Changed definitions to form 'real' macro definitions.
10
81cf290d
MV
112002-11-07 Marius Vollmer <marius.vollmer@uni-dortmund.de>
12
13 * format.scm (format): Use 'monitor' properly. Not the definition
14 needs to be restricted, the actual function needs to be.
15
3f619266
NJ
162002-11-05 Neil Jerram <neil@ossau.uklinux.net>
17
18 * boot-9.scm (define-option-interface): Fix to "simplification"
19 change below.
20
21 * debugger/breakpoints/source.scm: Enable source property
22 recording when module is loaded.
23 (##): Cope with ports whose `filename' is not a string.
24
9124ba8d
NJ
252002-11-04 Neil Jerram <neil@ossau.uklinux.net>
26
0983f67f
NJ
27 * boot-9.scm (define-option-interface): Simplify code-generation
28 code.
29
9124ba8d
NJ
30 * debugger/command-loop.scm (read-and-dispatch-command): Import
31 set-readline-prompt dynamically if we need to. (Previous
32 arrangement didn't work if this module was loaded before (ice-9
33 readline).)
34
eb2c5dcb
MV
352002-11-03 Marius Vollmer <mvo@zagadka.ping.de>
36
37 * format.scm (format): Wrap a monitor around format:format since
38 it is not thread-safe.
39
132fe7af
MV
402002-10-27 Marius Vollmer <mvo@zagadka.ping.de>
41
42 * threads.scm (%thread-handler): Explicitely return '#f'. This
43 value will be returned by join-thread.
44
8ee7506b
NJ
452002-10-26 Neil Jerram <neil@ossau.uklinux.net>
46
47 Merging debugger enhancements previously in separate
48 `guile-debugger' package ...
49
50 * debugger.scm: Factored out into the following constituent parts
51 - see comment in file for more details.
52 (*not-yet-introduced*): New (avoids repeatedly introducing the
53 debugger when entering it from breakpoints).
54 (debug-stack): New.
55 (debug): Rewrite to use more general `debug-stack'.
56
57 * debugger/commands.scm, debugger/command-loop.scm,
58 debugger/state.scm, debugger/utils.scm: New files containing bits
59 of old (ice-9 debugger), plus some rewriting and enhancements for
60 breakpoint support ...
61
62 * debugger/state.scm (state-rtd): Add flags field.
63 (make-state): Extend to optionally take flags.
64 (state-flags): New, accessor for flags field.
65 (set-state-index!, set-stack-index!): New.
66 (write-state-short): Rewritten to print out the current source
67 location in a way that is more easily trackable by Emacs.
68
69 * debugger/commands.scm (assert-continuable, continue, finish,
70 trace-finish, step, next): New debugger commands for continuing
71 execution from a breakpoint.
72
73 * debugger/behaviour.scm, debugger/breakpoints.scm,
74 debugger/breakpoints/procedural.scm,
75 debugger/breakpoints/range.scm, debugger/breakpoints/source.scm,
76 debugger/trap-hooks.scm, debugger/trc.scm: New files - breakpoint
77 support.
78
79 * Makefile.am (SUBDIRS): Add debugger subdirectory.
80
81 * debugger/Makefile.am, debugger/breakpoints/Makefile.am: New.
82
03453b05
MV
832002-10-21 Marius Vollmer <mvo@zagadka.ping.de>
84
85 * threads.scm (%thread-handler): Do not call unmask-signals, that
86 should be unnecessary now.
87
a7785f36
MD
882002-10-20 Mikael Djurfeldt <mdj@linnaeus>
89
90 * boot-9.scm (top-repl): Look for use-emacs-interface in
91 guile-user-module (should it be there?) instead of
92 the-root-module.
93
acfa1f52
MV
942002-10-10 Marius Vollmer <mvo@zagadka.ping.de>
95
96 * boot-9.scm (top-repl): Use 2 as the limit when saving the stack.
97 (error-catching-loop): use call-with-blocked-asyncs and
98 call-with-unblocked-asyncs instead of mask-signals and
99 unmask-signals.
100
34010f56
NJ
1012002-10-09 Neil Jerram <neil@ossau.uklinux.net>
102
103 * buffered-input.scm (make-buffered-input-port): Build an
104 input-waiting thunk for just extended version of make-soft-port.
105
9bc54879
RB
1062002-10-04 Rob Browning <rlb@defaultvalue.org>
107
108 * boot-9.scm (expt): switch if sense and use negative? rather than
109 >= 0.
110
3538c2b2
MV
1112002-10-04 Marius Vollmer <mvo@zagadka.ping.de>
112
113 * boot-9.scm (top-repl): Use "1" instead of "%deliver-signals" to
114 limit the signal stack.
115
f4232aa6
MV
1162002-09-15 Marius Vollmer <mvo@zagadka.ping.de>
117
118 * boot-9.scm (feature?): Added deprecation message.
119
5fc0857e
RB
1202002-09-14 Rob Browning <rlb@defaultvalue.org>
121
122 * boot-9.scm (sqrt): minor indentation fix.
123
cfcdb8e9
MV
1242002-09-05 Marius Vollmer <mvo@zagadka.ping.de>
125
126 * syncase.scm: Set the module transformer of the-syncase-module so
127 that we can use define-syntax.
128 (define-syntax-public): New and exported.
129
1302002-09-04 Marius Vollmer <mvo@zagadka.ping.de>
131
132 * syncase.scm (expansion-eval-closure, env->eval-closure): New.
133 (sc-macro): Set the expansion-eval-closure expanding the form.
134 (putprop, getprop): Use the expansion-eval-closure to find
135 variables instead of the current module.
136
fdf7e1d7
MV
1372002-07-08 Marius Vollmer <mvo@zagadka.ping.de>
138
139 * slib.scm (make-exchanger): Added. Thanks to Clinton Ebadi!
140
7c38399f
DH
1412002-07-07 Dirk Herrmann <D.Herrmann@tu-bs.de>
142
143 * boot-9.scm (define-option-interface): Replaced "macro" by
144 mmacro.
145
1334c61a
GH
1462002-06-01 Gary Houston <ghouston@arglist.com>
147
148 * boot-9.scm (file-set-position): Make third argument optional,
149 for SCM compatibility.
150 (file-position): simplify definition.
151
be87cdb7
MV
1522002-06-01 Marius Vollmer <mvo@zagadka.ping.de>
153
154 * boot-9.scm (file-set-position): Use seek instead of fseek.
155
e717bf46
MV
1562002-05-09 Marius Vollmer <mvo@zagadka.ping.de>
157
158 * format.scm (format:out-inf-nan): New.
159 (format:out-fixed, format:out-expon, format:out-general): Use it
160 to print infs and nans.
161
162 * boot-9.scm (unsetenv): New, for completeness.
163
9ea4ac37
MV
1642002-05-08 Marius Vollmer <mvo@zagadka.ping.de>
165
166 * format.scm (format:fn-max): Increase to 400 so ~f and ~g can
167 print long real numbers with large positive and negative
168 exponents.
169
45845efe
MV
1702002-05-06 Marius Vollmer <mvo@zagadka.ping.de>
171
172 * syncase.scm: Use (ice-9 threads) so that with-mutex is defined.
173
0bd1b44f
TTN
1742002-04-30 Thien-Thi Nguyen <ttn@giblet.glug.org>
175
176 * gap-buffer.scm: New file.
177
178 * Makefile.am (ice9_sources): Add gap-buffer.scm.
179
c87af2d5
RB
1802002-03-12 Rob Browning <rlb@defaultvalue.org>
181
182 * syncase.scm: fix bad let.
183 (gensym): fix failure on non-threaded
184
6c5b8521
TTN
1852002-03-05 Thien-Thi Nguyen <ttn@giblet.glug.org>
186
187 * ftw.scm: New file.
188
189 * Makefile.am (ice9_sources): Add ftw.scm.
190
327d4dd3
TTN
1912002-02-26 Thien-Thi Nguyen <ttn@giblet.glug.org>
192
193 * Makefile.am: Update path to pre-inst-guile automake frag.
194
d51b42e2
TTN
195 * boot-9.scm: Comment grammar fixes; nfc.
196 Thanks to Christopher Cramer.
197
46151112
RB
1982002-02-24 Rob Browning <rlb@defaultvalue.org>
199
200 * syncase.scm (gensym): redefine locally so we can control it's
201 properties. This is in preparation for changing the future public
202 gensym to produce unreadable symbols.
203
204 * psyntax.pp: updated to reflect new syncase.scm.
205
90d4a6b0
TTN
2062002-02-07 Thien-Thi Nguyen <ttn@giblet.glug.org>
207
208 * regex.scm: Add commentary; nfc.
209
0187b4f4
TTN
2102002-02-05 Thien-Thi Nguyen <ttn@giblet.glug.org>
211
212 * Makefile.am: Include $(top_srcdir)/pre-inst-guile.am.
213
214 (psyntax.pp): Use $(preinstguile).
215
dd580bd6
MV
2162002-01-14 Marius Vollmer <mvo@zagadka.ping.de>
217
218 * psyntax.ss (datum->syntax-object): Removed assertion in
219 datum->syntax-object that checked if the first argument, a
220 syntax-object, is an identifier. This was a unconvenient and
221 unnecessary restriction. Thanks to Dorai Sitaram!
222
0e6f7775
MV
2232002-01-12 Marius Vollmer <mvo@zagadka.ping.de>
224
225