Indentation
[bpt/guile.git] / ice-9 / ChangeLog
CommitLineData
f595ccfe
MD
12003-03-11 Mikael Djurfeldt <djurfeldt@nada.kth.se>
2
109c2c9f
MD
3 * boot-9.scm (process-duplicates): Use module-import-interface.
4 (module-symbol-interface): Removed.
5
f595ccfe
MD
6 * boot-9.scm (module-override!, make-mutable-parameter,
7 lookup-duplicates-handlers, default-module-duplicates-handler):
8 New functions.
9 (process-duplicates): Don't call duplicates handlers for duplicate
10 bindings of the same variable.
11 (process-define-module): Process #:replace.
12 (compile-interface-spec, resolve-interface): Process #:prefix.
13
14 * format.scm (format): Marked as replacement.
15
16 * threads.scm (future, future-ref): Marked as replacements.
17
7b07e5ef
MD
182003-03-07 Mikael Djurfeldt <djurfeldt@nada.kth.se>
19
20 These changes enables checking for duplicate imported bindings.
21
22 * boot-9.scm (process-define-module): Handle #:duplicates.
23 (module-use-interfaces! process-duplicates): New functions.
24 (duplicate-handlers): Dictionary of duplicate handlers.
25 (module-symbol-local-binding, module-symbol-binding): Bugfix.
26
1798b73d
MD
272003-03-04 Mikael Djurfeldt <djurfeldt@nada.kth.se>
28
29 * session.scm (apropos): Use hash-for-each instead of
30 array-for-each.
31
c35738c1
MD
322003-02-19 Mikael Djurfeldt <djurfeldt@nada.kth.se>
33
231a4ea8
MD
34 * boot-9.scm (make-module): Changed default size from 1021 to 31
35 (since the size now adapts).
36 (macro-table, xformer-table): Changed default size from 523 to 61.
37 (make-module): Don't call make-hash-table with zero size.
38
c35738c1
MD
39 * Makefile.am (ice9_sources): Added weak-vector.scm.
40
41 * weak-vector.scm: New file.
42
43 * boot-9.scm (module-clear!): Use hash-clear!.
44 (module-for-each): Use hash-for-each.
45 (module-map): Use hash-map.
46
f59a096e
MD
472003-02-11 Mikael Djurfeldt <djurfeldt@nada.kth.se>
48
49 * boot-9.scm (make-hash-table): Turned primitive.
50
e963ac2c
MD
512003-01-27 Mikael Djurfeldt <djurfeldt@nada.kth.se>
52
53 * syncase.scm (guile-macro): Strip syntactic information from
54 expression before trying to treat it as a Guile macro call.
55 (Thanks to Kevin Ryde.)
56
c2950e36
MD
572003-01-24 Mikael Djurfeldt <djurfeldt@nada.kth.se>
58
59 * threads.scm (parallel, letpar): Rewritten.
60
f4719f31
MD
612003-01-23 Mikael Djurfeldt <djurfeldt@nada.kth.se>
62
63 * threads.scm (par-mapper, n-par-map, n-par-for-each): Use
64 futures.
65
93f26b7b
MD
662003-01-20 Mikael Djurfeldt <djurfeldt@nada.kth.se>
67
51407fa0
MD
68 * occam-channel.scm (alt): New syntax.
69
93f26b7b
MD
70 * psyntax.ss (self-evaluating?): Removed. Guile now provides this
71 operator as a primitive procedure.
72 (build-data): Quote vectors (psyntax.ss requires this).
73
742003-01-19 Mikael Djurfeldt <djurfeldt@nada.kth.se>
75
76 * psyntax.ss (self-evaluating?): Allow procedures implanted in
77 source. (Guile uses this internally.)
78
80f225df
MD
792003-01-16 Mikael Djurfeldt <djurfeldt@nada.kth.se>
80
81 * psyntax.ss (build-data): Don't quote self-evaluating expressions
82 in output. (We normally *would* like also these expressions to be
83 quoted, but until Guile's native macros and syncase cooperates
84 better, it is less destructive not to quote.)
85 (self-evaluating?): Removed null? (In Guile, the empty list is not
86 self-evaluating).
87 (sc-chi): Export chi as sc-chi.
88 (external-macro): New syntax type.
89
90 * psyntax.pp: Regenerated.
91
92 * compile-psyntax.scm: Set expansion-eval-closure.
7906d57d 93
cf743aea
MD
94 * boot-9.scm (use-syntax): Return *unspecified*.
95
7906d57d
MD
96 * syncase.scm: Set expansion-eval-closure to
97 the-syncase-eval-closure during booting so that variables are
cf743aea
MD
98 created in the correct module.
99 (syncase): Set expansion-eval-closure.
7906d57d
MD
100 (define-syntax define-syntax-public eval-when fluid-let-syntax
101 identifier-syntax let-syntax letrec-syntax syntax syntax-case
102 syntax-rules with-syntax include): Removed definitions (these are
103 created from within psyntax.pp).
80f225df
MD
104 Enable expansion of Guile macros during a syntax-case
105 transformation.
cf743aea 106
60eefd9c
MD
1072003-01-10 Mikael Djurfeldt <djurfeldt@nada.kth.se>
108
8411a446 109 * occam-channel.scm (make-channel): Renamed from channel.
fb831451 110 (make-timer): New function.
8411a446 111
60eefd9c
MD
112 * Makefile.am (ice9_sources): Added occam-channel.scm.
113
114 * occam-channel.scm: New file. Implements occam-like channels.
115
db853761
NJ
1162002-12-28 Neil Jerram <neil@ossau.uklinux.net>
117
118 * boot-9.scm (module-defined-hook): New hook, run whenever a new
119 module is defined.
120 (process-define-module): Run this hook.
121
62d4fd94
MD
1222002-12-18 Mikael Djurfeldt <mdj@kvast.blakulla.net>
123
124 * threads.scm: Removed bogus definition of future-ref.
125
87623595
MD
1262002-12-15 Mikael Djurfeldt <djurfeldt@nada.kth.se>
127
128 * threads.scm (par-map, par-for-each): Reimplemented using
129 joing-thread.
130 (parallel): Reimplemented using futures.
131 (n-par-map, n-for-each): New procedures.
132
edeea67b
MV
1332002-12-12 Marius Vollmer <mvo@zagadka.ping.de>
134
135 * optargs.scm (improper-list-copy): New.
136 (parse-arglist): Use it instead of list-copy.
137
fc85d095
MD
1382002-12-09 Mikael Djurfeldt <djurfeldt@nada.kth.se>
139
140 * threads.scm (letpar): New macro.
141
b2cbe8d8
RB
1422002-12-08 Rob Browning <rlb@defaultvalue.org>
143
144 * debugger/breakpoints/Makefile.am (subpkgdatadir): VERSION ->
145 GUILE_EFFECTIVE_VERSION.
146
147 * debugger/Makefile.am (subpkgdatadir): VERSION ->
148 GUILE_EFFECTIVE_VERSION.
149
150 * Makefile.am (subpkgdatadir): VERSION -> GUILE_EFFECTIVE_VERSION.
151
abce330c
MD
1522002-12-04 Mikael Djurfeldt <mdj@linnaeus>
153
fc85d095
MD
154 * threads.scm (parallel): New macro.
155 (par-map, par-for-each): New procedures.
abce330c
MD
156
157 * documentation.scm (object-documentation): Added support for
158 defmacros.
159
f2cbc0e5
DH
1602002-11-24 Dirk Herrmann <D.Herrmann@tu-bs.de>
161
162 * boot-9.scm (re-export-syntax): Re-introduced after accidentally
163 removing it in my patch from 2002-11-16.
164
9123414e
DH
1652002-11-24 Dirk Herrmann <D.Herrmann@tu-bs.de>
166
167 Thanks to Mikael Djurfeldt for a bugreport which led to the
168 following changes:
169
170 * slib.scm (%system-define): Removed.
171
172 (define): Changed to use define-private instead of
173 %system-define.
174
175 * boot-9.scm (define-private): Undid my changes from 2002-11-16
176 until Guile supports hygienic macros.
177
50a63003
NJ
1782002-11-17 Neil Jerram <neil@ossau.uklinux.net>
179
180 * emacs.scm (emacs-load): Locally define `read-and-eval!', as it
181 has been removed from the core.
182
c55bcb32
DH
1832002-11-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
184
185 * syncase.scm (define-syntax, eval-when, fluid-let-syntax,
186 identifier-syntax, let-syntax, letrec-syntax, syntax, syntax-case,
187 syntax-rules, with-syntax, include): Changed definitions to form
188 'real' macro definitions.
189
6aa9ea7c
DH
1902002-11-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
191
192 * boot-9.scm (define-private, export-syntax, export-syntax):
193 Fixed my previous fix (blush).
194
ab382f52
DH
1952002-11-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
196
197 * boot-9.scm (define-private, export-syntax, export-syntax):
198 Changed definitions to form 'real' macro definitions.
199
81cf290d
MV
2002002-11-07 Marius Vollmer <marius.vollmer@uni-dortmund.de>
201
202 * format.scm (format): Use 'monitor' properly. Not the definition
203 needs to be restricted, the actual function needs to be.
204
3f619266
NJ
2052002-11-05 Neil Jerram <neil@ossau.uklinux.net>
206
207 * boot-9.scm (define-option-interface): Fix to "simplification"
208 change below.
209
210 * debugger/breakpoints/source.scm: Enable source property
211 recording when module is loaded.
212 (##): Cope with ports whose `filename' is not a string.
213
9124ba8d
NJ
2142002-11-04 Neil Jerram <neil@ossau.uklinux.net>
215
0983f67f
NJ
216 * boot-9.scm (define-option-interface): Simplify code-generation
217 code.
218
9124ba8d
NJ
219 * debugger/command-loop.scm (read-and-dispatch-command): Import
220 set-readline-prompt dynamically if we need to. (Previous
221 arrangement didn't work if this module was loaded before (ice-9
222 readline).)
223
eb2c5dcb
MV
2242002-11-03 Marius Vollmer <mvo@zagadka.ping.de>
225
226 * format.scm (format): Wrap a monitor around format:format since
227 it is not thread-safe.
228
132fe7af
MV
2292002-10-27 Marius Vollmer <mvo@zagadka.ping.de>
230
231 * threads.scm (%thread-handler): Explicitely return '#f'. This
232 value will be returned by join-thread.
233
8ee7506b
NJ
2342002-10-26 Neil Jerram <neil@ossau.uklinux.net>
235
236 Merging debugger enhancements previously in separate
237 `guile-debugger' package ...
238
239 * debugger.scm: Factored out into the following constituent parts
240 - see comment in file for more details.
241 (*not-yet-introduced*): New (avoids repeatedly introducing the
242 debugger when entering it from breakpoints).
243 (debug-stack): New.
244 (debug): Rewrite to use more general `debug-stack'.
245
246 * debugger/commands.scm, debugger/command-loop.scm,
247 debugger/state.scm, debugger/utils.scm: New files containing bits
248 of old (ice-9 debugger), plus some rewriting and enhancements for
249 breakpoint support ...
250
251 * debugger/state.scm (state-rtd): Add flags field.
252 (make-state): Extend to optionally take flags.
253 (state-flags): New, accessor for flags field.
254 (set-state-index!, set-stack-index!): New.
255 (write-state-short): Rewritten to print out the current source
256 location in a way that is more easily trackable by Emacs.
257
258 * debugger/commands.scm (assert-continuable, continue, finish,
259 trace-finish, step, next): New debugger commands for continuing
260 execution from a breakpoint.
261
262 * debugger/behaviour.scm, debugger/breakpoints.scm,
263 debugger/breakpoints/procedural.scm,
264 debugger/breakpoints/range.scm, debugger/breakpoints/source.scm,
265 debugger/trap-hooks.scm, debugger/trc.scm: New files - breakpoint
266 support.
267
268 * Makefile.am (SUBDIRS): Add debugger subdirectory.
269
270 * debugger/Makefile.am, debugger/breakpoints/Makefile.am: New.
271
03453b05
MV
2722002-10-21 Marius Vollmer <mvo@zagadka.ping.de>
273
274 * threads.scm (%thread-handler): Do not call unmask-signals, that
275 should be unnecessary now.
276
a7785f36
MD
2772002-10-20 Mikael Djurfeldt <mdj@linnaeus>
278
279 * boot-9.scm (top-repl): Look for use-emacs-interface in
280 guile-user-module (should it be there?) instead of
281 the-root-module.
282
acfa1f52
MV
2832002-10-10 Marius Vollmer <mvo@zagadka.ping.de>
284
285 * boot-9.scm (top-repl): Use 2 as the limit when saving the stack.
286 (error-catching-loop): use call-with-blocked-asyncs and
287 call-with-unblocked-asyncs instead of mask-signals and
288 unmask-signals.
289
34010f56
NJ
2902002-10-09 Neil Jerram <neil@ossau.uklinux.net>
291
292 * buffered-input.scm (make-buffered-input-port): Build an
293 input-waiting thunk for just extended version of make-soft-port.
294
9bc54879
RB
2952002-10-04 Rob Browning <rlb@defaultvalue.org>
296
297 * boot-9.scm (expt): switch if sense and use negative? rather than
298 >= 0.
299
3538c2b2
MV
3002002-10-04 Marius Vollmer <mvo@zagadka.ping.de>
301
302 * boot-9.scm (top-repl): Use "1" instead of "%deliver-signals" to
303 limit the signal stack.
304
f4232aa6
MV
3052002-09-15 Marius Vollmer <mvo@zagadka.ping.de>
306
307 * boot-9.scm (feature?): Added deprecation message.
308
5fc0857e
RB
3092002-09-14 Rob Browning <rlb@defaultvalue.org>
310
311 * boot-9.scm (sqrt): minor indentation fix.
312
cfcdb8e9
MV
3132002-09-05 Marius Vollmer <mvo@zagadka.ping.de>
314
315 * syncase.scm: Set the module transformer of the-syncase-module so
316 that we can use define-syntax.
317 (define-syntax-public): New and exported.
318
3192002-09-04 Marius Vollmer <mvo@zagadka.ping.de>
320
321 * syncase.scm (expansion-eval-closure, env->eval-closure): New.
322 (sc-macro): Set the expansion-eval-closure expanding the form.
323 (putprop, getprop): Use the expansion-eval-closure to find
324 variables instead of the current module.
325
fdf7e1d7
MV
3262002-07-08 Marius Vollmer <mvo@zagadka.ping.de>
327
328 * slib.scm (make-exchanger): Added. Thanks to Clinton Ebadi!
329
7c38399f
DH
3302002-07-07 Dirk Herrmann <D.Herrmann@tu-bs.de>
331
332 * boot-9.scm (define-option-interface): Replaced "macro" by
333 mmacro.
334
1334c61a
GH
3352002-06-01 Gary Houston <ghouston@arglist.com>
336
337 * boot-9.scm (file-set-position): Make third argument optional,
338 for SCM compatibility.
339 (file-position): simplify definition.
340
be87cdb7
MV
3412002-06-01 Marius Vollmer <mvo@zagadka.ping.de>
342
343 * boot-9.scm (file-set-position): Use seek instead of fseek.
344
e717bf46
MV
3452002-05-09 Marius Vollmer <mvo@zagadka.ping.de>
346
347 * format.scm (format:out-inf-nan): New.
348 (format:out-fixed, format:out-expon, format:out-general): Use it
349 to print infs and nans.
350
351 * boot-9.scm (unsetenv): New, for completeness.
352
9ea4ac37
MV
3532002-05-08 Marius Vollmer <mvo@zagadka.ping.de>
354
355 * format.scm (format:fn-max): Increase to 400 so ~f and ~g can
356 print long real numbers with large positive and negative
357 exponents.
358
45845efe
MV
3592002-05-06 Marius Vollmer <mvo@zagadka.ping.de>
360
361 * syncase.scm: Use (ice-9 threads) so that with-mutex is defined.
362
0bd1b44f
TTN
3632002-04-30 Thien-Thi Nguyen <ttn@giblet.glug.org>
364
365 * gap-buffer.scm: New file.
366
367 * Makefile.am (ice9_sources): Add gap-buffer.scm.
368
c87af2d5
RB
3692002-03-12 Rob Browning <rlb@defaultvalue.org>
370
371 * syncase.scm: fix bad let.
372 (gensym): fix failure on non-threaded
373
6c5b8521
TTN
3742002-03-05 Thien-Thi Nguyen <ttn@giblet.glug.org>
375
376 * ftw.scm: New file.
377
378 * Makefile.am (ice9_sources): Add ftw.scm.
379
327d4dd3
TTN
3802002-02-26 Thien-Thi Nguyen <ttn@giblet.glug.org>
381
382 * Makefile.am: Update path to pre-inst-guile automake frag.
383
d51b42e2
TTN
384 * boot-9.scm: Comment grammar fixes; nfc.
385 Thanks to Christopher Cramer.
386
46151112
RB
3872002-02-24 Rob Browning <rlb@defaultvalue.org>
388
389 * syncase.scm (gensym): redefine locally so we can control it's
390 properties. This is in preparation for changing the future public
391 gensym to produce unreadable symbols.
392
393 * psyntax.pp: updated to reflect new syncase.scm.
394
90d4a6b0
TTN
3952002-02-07 Thien-Thi Nguyen <ttn@giblet.glug.org>
396
397 * regex.scm: Add commentary; nfc.
398
0187b4f4
TTN
3992002-02-05 Thien-Thi Nguyen <ttn@giblet.glug.org>
400
401 * Makefile.am: Include $(top_srcdir)/pre-inst-guile.am.
402
403 (psyntax.pp): Use $(preinstguile).
404
dd580bd6
MV
4052002-01-14 Marius Vollmer <mvo@zagadka.ping.de>
406
407 * psyntax.ss (datum->syntax-object): Removed assertion in
408 datum->syntax-object that checked if the first argument, a
409 syntax-object, is an identifier. This was a unconvenient and
410 unnecessary restriction. Thanks to Dorai Sitaram!
411
0e6f7775
MV
4122002-01-12 Marius Vollmer <mvo@zagadka.ping.de>
413
414