* psyntax.ss (self-evaluating?): Allow procedures implanted in
[bpt/guile.git] / ice-9 / ChangeLog
CommitLineData
80f225df
MD
12003-01-16 Mikael Djurfeldt <djurfeldt@nada.kth.se>
2
3 * psyntax.ss (build-data): Don't quote self-evaluating expressions
4 in output. (We normally *would* like also these expressions to be
5 quoted, but until Guile's native macros and syncase cooperates
6 better, it is less destructive not to quote.)
7 (self-evaluating?): Removed null? (In Guile, the empty list is not
8 self-evaluating).
9 (sc-chi): Export chi as sc-chi.
10 (external-macro): New syntax type.
11
12 * psyntax.pp: Regenerated.
13
14 * compile-psyntax.scm: Set expansion-eval-closure.
7906d57d 15
cf743aea
MD
16 * boot-9.scm (use-syntax): Return *unspecified*.
17
7906d57d
MD
18 * syncase.scm: Set expansion-eval-closure to
19 the-syncase-eval-closure during booting so that variables are
cf743aea
MD
20 created in the correct module.
21 (syncase): Set expansion-eval-closure.
7906d57d
MD
22 (define-syntax define-syntax-public eval-when fluid-let-syntax
23 identifier-syntax let-syntax letrec-syntax syntax syntax-case
24 syntax-rules with-syntax include): Removed definitions (these are
25 created from within psyntax.pp).
80f225df
MD
26 Enable expansion of Guile macros during a syntax-case
27 transformation.
cf743aea 28
60eefd9c
MD
292003-01-10 Mikael Djurfeldt <djurfeldt@nada.kth.se>
30
8411a446 31 * occam-channel.scm (make-channel): Renamed from channel.
fb831451 32 (make-timer): New function.
8411a446 33
60eefd9c
MD
34 * Makefile.am (ice9_sources): Added occam-channel.scm.
35
36 * occam-channel.scm: New file. Implements occam-like channels.
37
db853761
NJ
382002-12-28 Neil Jerram <neil@ossau.uklinux.net>
39
40 * boot-9.scm (module-defined-hook): New hook, run whenever a new
41 module is defined.
42 (process-define-module): Run this hook.
43
62d4fd94
MD
442002-12-18 Mikael Djurfeldt <mdj@kvast.blakulla.net>
45
46 * threads.scm: Removed bogus definition of future-ref.
47
87623595
MD
482002-12-15 Mikael Djurfeldt <djurfeldt@nada.kth.se>
49
50 * threads.scm (par-map, par-for-each): Reimplemented using
51 joing-thread.
52 (parallel): Reimplemented using futures.
53 (n-par-map, n-for-each): New procedures.
54
edeea67b
MV
552002-12-12 Marius Vollmer <mvo@zagadka.ping.de>
56
57 * optargs.scm (improper-list-copy): New.
58 (parse-arglist): Use it instead of list-copy.
59
fc85d095
MD
602002-12-09 Mikael Djurfeldt <djurfeldt@nada.kth.se>
61
62 * threads.scm (letpar): New macro.
63
b2cbe8d8
RB
642002-12-08 Rob Browning <rlb@defaultvalue.org>
65
66 * debugger/breakpoints/Makefile.am (subpkgdatadir): VERSION ->
67 GUILE_EFFECTIVE_VERSION.
68
69 * debugger/Makefile.am (subpkgdatadir): VERSION ->
70 GUILE_EFFECTIVE_VERSION.
71
72 * Makefile.am (subpkgdatadir): VERSION -> GUILE_EFFECTIVE_VERSION.
73
abce330c
MD
742002-12-04 Mikael Djurfeldt <mdj@linnaeus>
75
fc85d095
MD
76 * threads.scm (parallel): New macro.
77 (par-map, par-for-each): New procedures.
abce330c
MD
78
79 * documentation.scm (object-documentation): Added support for
80 defmacros.
81
f2cbc0e5
DH
822002-11-24 Dirk Herrmann <D.Herrmann@tu-bs.de>
83
84 * boot-9.scm (re-export-syntax): Re-introduced after accidentally
85 removing it in my patch from 2002-11-16.
86
9123414e
DH
872002-11-24 Dirk Herrmann <D.Herrmann@tu-bs.de>
88
89 Thanks to Mikael Djurfeldt for a bugreport which led to the
90 following changes:
91
92 * slib.scm (%system-define): Removed.
93
94 (define): Changed to use define-private instead of
95 %system-define.
96
97 * boot-9.scm (define-private): Undid my changes from 2002-11-16
98 until Guile supports hygienic macros.
99
50a63003
NJ
1002002-11-17 Neil Jerram <neil@ossau.uklinux.net>
101
102 * emacs.scm (emacs-load): Locally define `read-and-eval!', as it
103 has been removed from the core.
104
c55bcb32
DH
1052002-11-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
106
107 * syncase.scm (define-syntax, eval-when, fluid-let-syntax,
108 identifier-syntax, let-syntax, letrec-syntax, syntax, syntax-case,
109 syntax-rules, with-syntax, include): Changed definitions to form
110 'real' macro definitions.
111
6aa9ea7c
DH
1122002-11-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
113
114 * boot-9.scm (define-private, export-syntax, export-syntax):
115 Fixed my previous fix (blush).
116
ab382f52
DH
1172002-11-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
118
119 * boot-9.scm (define-private, export-syntax, export-syntax):
120 Changed definitions to form 'real' macro definitions.
121
81cf290d
MV
1222002-11-07 Marius Vollmer <marius.vollmer@uni-dortmund.de>
123
124 * format.scm (format): Use 'monitor' properly. Not the definition
125 needs to be restricted, the actual function needs to be.
126
3f619266
NJ
1272002-11-05 Neil Jerram <neil@ossau.uklinux.net>
128
129 * boot-9.scm (define-option-interface): Fix to "simplification"
130 change below.
131
132 * debugger/breakpoints/source.scm: Enable source property
133 recording when module is loaded.
134 (##): Cope with ports whose `filename' is not a string.
135
9124ba8d
NJ
1362002-11-04 Neil Jerram <neil@ossau.uklinux.net>
137
0983f67f
NJ
138 * boot-9.scm (define-option-interface): Simplify code-generation
139 code.
140
9124ba8d
NJ
141 * debugger/command-loop.scm (read-and-dispatch-command): Import
142 set-readline-prompt dynamically if we need to. (Previous
143 arrangement didn't work if this module was loaded before (ice-9
144 readline).)
145
eb2c5dcb
MV
1462002-11-03 Marius Vollmer <mvo@zagadka.ping.de>
147
148 * format.scm (format): Wrap a monitor around format:format since
149 it is not thread-safe.
150
132fe7af
MV
1512002-10-27 Marius Vollmer <mvo@zagadka.ping.de>
152
153 * threads.scm (%thread-handler): Explicitely return '#f'. This
154 value will be returned by join-thread.
155
8ee7506b
NJ
1562002-10-26 Neil Jerram <neil@ossau.uklinux.net>
157
158 Merging debugger enhancements previously in separate
159 `guile-debugger' package ...
160
161 * debugger.scm: Factored out into the following constituent parts
162 - see comment in file for more details.
163 (*not-yet-introduced*): New (avoids repeatedly introducing the
164 debugger when entering it from breakpoints).
165 (debug-stack): New.
166 (debug): Rewrite to use more general `debug-stack'.
167
168 * debugger/commands.scm, debugger/command-loop.scm,
169 debugger/state.scm, debugger/utils.scm: New files containing bits
170 of old (ice-9 debugger), plus some rewriting and enhancements for
171 breakpoint support ...
172
173 * debugger/state.scm (state-rtd): Add flags field.
174 (make-state): Extend to optionally take flags.
175 (state-flags): New, accessor for flags field.
176 (set-state-index!, set-stack-index!): New.
177 (write-state-short): Rewritten to print out the current source
178 location in a way that is more easily trackable by Emacs.
179
180 * debugger/commands.scm (assert-continuable, continue, finish,
181 trace-finish, step, next): New debugger commands for continuing
182 execution from a breakpoint.
183
184 * debugger/behaviour.scm, debugger/breakpoints.scm,
185 debugger/breakpoints/procedural.scm,
186 debugger/breakpoints/range.scm, debugger/breakpoints/source.scm,
187 debugger/trap-hooks.scm, debugger/trc.scm: New files - breakpoint
188 support.
189
190 * Makefile.am (SUBDIRS): Add debugger subdirectory.
191
192 * debugger/Makefile.am, debugger/breakpoints/Makefile.am: New.
193
03453b05
MV
1942002-10-21 Marius Vollmer <mvo@zagadka.ping.de>
195
196 * threads.scm (%thread-handler): Do not call unmask-signals, that
197 should be unnecessary now.
198
a7785f36
MD
1992002-10-20 Mikael Djurfeldt <mdj@linnaeus>
200
201 * boot-9.scm (top-repl): Look for use-emacs-interface in
202 guile-user-module (should it be there?) instead of
203 the-root-module.
204
acfa1f52
MV
2052002-10-10 Marius Vollmer <mvo@zagadka.ping.de>
206
207 * boot-9.scm (top-repl): Use 2 as the limit when saving the stack.
208 (error-catching-loop): use call-with-blocked-asyncs and
209 call-with-unblocked-asyncs instead of mask-signals and
210 unmask-signals.
211
34010f56
NJ
2122002-10-09 Neil Jerram <neil@ossau.uklinux.net>
213
214 * buffered-input.scm (make-buffered-input-port): Build an
215 input-waiting thunk for just extended version of make-soft-port.
216
9bc54879
RB
2172002-10-04 Rob Browning <rlb@defaultvalue.org>
218
219 * boot-9.scm (expt): switch if sense and use negative? rather than
220 >= 0.
221
3538c2b2
MV
2222002-10-04 Marius Vollmer <mvo@zagadka.ping.de>
223
224 * boot-9.scm (top-repl): Use "1" instead of "%deliver-signals" to
225 limit the signal stack.
226
f4232aa6
MV
2272002-09-15 Marius Vollmer <mvo@zagadka.ping.de>
228
229 * boot-9.scm (feature?): Added deprecation message.
230
5fc0857e
RB
2312002-09-14 Rob Browning <rlb@defaultvalue.org>
232
233 * boot-9.scm (sqrt): minor indentation fix.
234
cfcdb8e9
MV
2352002-09-05 Marius Vollmer <mvo@zagadka.ping.de>
236
237 * syncase.scm: Set the module transformer of the-syncase-module so
238 that we can use define-syntax.
239 (define-syntax-public): New and exported.
240
2412002-09-04 Marius Vollmer <mvo@zagadka.ping.de>
242
243 * syncase.scm (expansion-eval-closure, env->eval-closure): New.
244 (sc-macro): Set the expansion-eval-closure expanding the form.
245 (putprop, getprop): Use the expansion-eval-closure to find
246 variables instead of the current module.
247
fdf7e1d7
MV
2482002-07-08 Marius Vollmer <mvo@zagadka.ping.de>
249
250 * slib.scm (make-exchanger): Added. Thanks to Clinton Ebadi!
251
7c38399f
DH
2522002-07-07 Dirk Herrmann <D.Herrmann@tu-bs.de>
253
254 * boot-9.scm (define-option-interface): Replaced "macro" by
255 mmacro.
256
1334c61a
GH
2572002-06-01 Gary Houston <ghouston@arglist.com>
258
259 * boot-9.scm (file-set-position): Make third argument optional,
260 for SCM compatibility.
261 (file-position): simplify definition.
262
be87cdb7
MV
2632002-06-01 Marius Vollmer <mvo@zagadka.ping.de>
264
265 * boot-9.scm (file-set-position): Use seek instead of fseek.
266
e717bf46
MV
2672002-05-09 Marius Vollmer <mvo@zagadka.ping.de>
268
269 * format.scm (format:out-inf-nan): New.
270 (format:out-fixed, format:out-expon, format:out-general): Use it
271 to print infs and nans.
272
273 * boot-9.scm (unsetenv): New, for completeness.
274
9ea4ac37
MV
2752002-05-08 Marius Vollmer <mvo@zagadka.ping.de>
276
277 * format.scm (format:fn-max): Increase to 400 so ~f and ~g can
278 print long real numbers with large positive and negative
279 exponents.
280
45845efe
MV
2812002-05-06 Marius Vollmer <mvo@zagadka.ping.de>
282
283 * syncase.scm: Use (ice-9 threads) so that with-mutex is defined.
284
0bd1b44f
TTN
2852002-04-30 Thien-Thi Nguyen <ttn@giblet.glug.org>
286
287 * gap-buffer.scm: New file.
288
289 * Makefile.am (ice9_sources): Add gap-buffer.scm.
290
c87af2d5
RB
2912002-03-12 Rob Browning <rlb@defaultvalue.org>
292
293 * syncase.scm: fix bad let.
294 (gensym): fix failure on non-threaded
295
6c5b8521
TTN
2962002-03-05 Thien-Thi Nguyen <ttn@giblet.glug.org>
297
298 * ftw.scm: New file.
299
300 * Makefile.am (ice9_sources): Add ftw.scm.
301
327d4dd3
TTN
3022002-02-26 Thien-Thi Nguyen <ttn@giblet.glug.org>
303
304 * Makefile.am: Update path to pre-inst-guile automake frag.
305
d51b42e2
TTN
306 * boot-9.scm: Comment grammar fixes; nfc.
307 Thanks to Christopher Cramer.
308
46151112
RB
3092002-02-24 Rob Browning <rlb@defaultvalue.org>
310
311 * syncase.scm (gensym): redefine locally so we can control it's
312 properties. This is in preparation for changing the future public
313 gensym to produce unreadable symbols.
314
315 * psyntax.pp: updated to reflect new syncase.scm.
316
90d4a6b0
TTN
3172002-02-07 Thien-Thi Nguyen <ttn@giblet.glug.org>
318
319 * regex.scm: Add commentary; nfc.
320
0187b4f4
TTN
3212002-02-05 Thien-Thi Nguyen <ttn@giblet.glug.org>
322
323 * Makefile.am: Include $(top_srcdir)/pre-inst-guile.am.
324
325 (psyntax.pp): Use $(preinstguile).
326
dd580bd6
MV
3272002-01-14 Marius Vollmer <mvo@zagadka.ping.de>
328
329 * psyntax.ss (datum->syntax-object): Removed assertion in
330 datum->syntax-object that checked if the first argument, a
331 syntax-object, is an identifier. This was a unconvenient and
332 unnecessary restriction. Thanks to Dorai Sitaram!
333
0e6f7775
MV
3342002-01-12 Marius Vollmer <mvo@zagadka.ping.de>
335
336