* __scm.h (SCM_DEFER_INTS, SCM_ALLOW_INTS): New definitions.
[bpt/guile.git] / ice-9 / ChangeLog
CommitLineData
edeea67b
MV
12002-12-12 Marius Vollmer <mvo@zagadka.ping.de>
2
3 * optargs.scm (improper-list-copy): New.
4 (parse-arglist): Use it instead of list-copy.
5
fc85d095
MD
62002-12-09 Mikael Djurfeldt <djurfeldt@nada.kth.se>
7
8 * threads.scm (letpar): New macro.
9
b2cbe8d8
RB
102002-12-08 Rob Browning <rlb@defaultvalue.org>
11
12 * debugger/breakpoints/Makefile.am (subpkgdatadir): VERSION ->
13 GUILE_EFFECTIVE_VERSION.
14
15 * debugger/Makefile.am (subpkgdatadir): VERSION ->
16 GUILE_EFFECTIVE_VERSION.
17
18 * Makefile.am (subpkgdatadir): VERSION -> GUILE_EFFECTIVE_VERSION.
19
abce330c
MD
202002-12-04 Mikael Djurfeldt <mdj@linnaeus>
21
fc85d095
MD
22 * threads.scm (parallel): New macro.
23 (par-map, par-for-each): New procedures.
abce330c
MD
24
25 * documentation.scm (object-documentation): Added support for
26 defmacros.
27
f2cbc0e5
DH
282002-11-24 Dirk Herrmann <D.Herrmann@tu-bs.de>
29
30 * boot-9.scm (re-export-syntax): Re-introduced after accidentally
31 removing it in my patch from 2002-11-16.
32
9123414e
DH
332002-11-24 Dirk Herrmann <D.Herrmann@tu-bs.de>
34
35 Thanks to Mikael Djurfeldt for a bugreport which led to the
36 following changes:
37
38 * slib.scm (%system-define): Removed.
39
40 (define): Changed to use define-private instead of
41 %system-define.
42
43 * boot-9.scm (define-private): Undid my changes from 2002-11-16
44 until Guile supports hygienic macros.
45
50a63003
NJ
462002-11-17 Neil Jerram <neil@ossau.uklinux.net>
47
48 * emacs.scm (emacs-load): Locally define `read-and-eval!', as it
49 has been removed from the core.
50
c55bcb32
DH
512002-11-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
52
53 * syncase.scm (define-syntax, eval-when, fluid-let-syntax,
54 identifier-syntax, let-syntax, letrec-syntax, syntax, syntax-case,
55 syntax-rules, with-syntax, include): Changed definitions to form
56 'real' macro definitions.
57
6aa9ea7c
DH
582002-11-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
59
60 * boot-9.scm (define-private, export-syntax, export-syntax):
61 Fixed my previous fix (blush).
62
ab382f52
DH
632002-11-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
64
65 * boot-9.scm (define-private, export-syntax, export-syntax):
66 Changed definitions to form 'real' macro definitions.
67
81cf290d
MV
682002-11-07 Marius Vollmer <marius.vollmer@uni-dortmund.de>
69
70 * format.scm (format): Use 'monitor' properly. Not the definition
71 needs to be restricted, the actual function needs to be.
72
3f619266
NJ
732002-11-05 Neil Jerram <neil@ossau.uklinux.net>
74
75 * boot-9.scm (define-option-interface): Fix to "simplification"
76 change below.
77
78 * debugger/breakpoints/source.scm: Enable source property
79 recording when module is loaded.
80 (##): Cope with ports whose `filename' is not a string.
81
9124ba8d
NJ
822002-11-04 Neil Jerram <neil@ossau.uklinux.net>
83
0983f67f
NJ
84 * boot-9.scm (define-option-interface): Simplify code-generation
85 code.
86
9124ba8d
NJ
87 * debugger/command-loop.scm (read-and-dispatch-command): Import
88 set-readline-prompt dynamically if we need to. (Previous
89 arrangement didn't work if this module was loaded before (ice-9
90 readline).)
91
eb2c5dcb
MV
922002-11-03 Marius Vollmer <mvo@zagadka.ping.de>
93
94 * format.scm (format): Wrap a monitor around format:format since
95 it is not thread-safe.
96
132fe7af
MV
972002-10-27 Marius Vollmer <mvo@zagadka.ping.de>
98
99 * threads.scm (%thread-handler): Explicitely return '#f'. This
100 value will be returned by join-thread.
101
8ee7506b
NJ
1022002-10-26 Neil Jerram <neil@ossau.uklinux.net>
103
104 Merging debugger enhancements previously in separate
105 `guile-debugger' package ...
106
107 * debugger.scm: Factored out into the following constituent parts
108 - see comment in file for more details.
109 (*not-yet-introduced*): New (avoids repeatedly introducing the
110 debugger when entering it from breakpoints).
111 (debug-stack): New.
112 (debug): Rewrite to use more general `debug-stack'.
113
114 * debugger/commands.scm, debugger/command-loop.scm,
115 debugger/state.scm, debugger/utils.scm: New files containing bits
116 of old (ice-9 debugger), plus some rewriting and enhancements for
117 breakpoint support ...
118
119 * debugger/state.scm (state-rtd): Add flags field.
120 (make-state): Extend to optionally take flags.
121 (state-flags): New, accessor for flags field.
122 (set-state-index!, set-stack-index!): New.
123 (write-state-short): Rewritten to print out the current source
124 location in a way that is more easily trackable by Emacs.
125
126 * debugger/commands.scm (assert-continuable, continue, finish,
127 trace-finish, step, next): New debugger commands for continuing
128 execution from a breakpoint.
129
130 * debugger/behaviour.scm, debugger/breakpoints.scm,
131 debugger/breakpoints/procedural.scm,
132 debugger/breakpoints/range.scm, debugger/breakpoints/source.scm,
133 debugger/trap-hooks.scm, debugger/trc.scm: New files - breakpoint
134 support.
135
136 * Makefile.am (SUBDIRS): Add debugger subdirectory.
137
138 * debugger/Makefile.am, debugger/breakpoints/Makefile.am: New.
139
03453b05
MV
1402002-10-21 Marius Vollmer <mvo@zagadka.ping.de>
141
142 * threads.scm (%thread-handler): Do not call unmask-signals, that
143 should be unnecessary now.
144
a7785f36
MD
1452002-10-20 Mikael Djurfeldt <mdj@linnaeus>
146
147 * boot-9.scm (top-repl): Look for use-emacs-interface in
148 guile-user-module (should it be there?) instead of
149 the-root-module.
150
acfa1f52
MV
1512002-10-10 Marius Vollmer <mvo@zagadka.ping.de>
152
153 * boot-9.scm (top-repl): Use 2 as the limit when saving the stack.
154 (error-catching-loop): use call-with-blocked-asyncs and
155 call-with-unblocked-asyncs instead of mask-signals and
156 unmask-signals.
157
34010f56
NJ
1582002-10-09 Neil Jerram <neil@ossau.uklinux.net>
159
160 * buffered-input.scm (make-buffered-input-port): Build an
161 input-waiting thunk for just extended version of make-soft-port.
162
9bc54879
RB
1632002-10-04 Rob Browning <rlb@defaultvalue.org>
164
165 * boot-9.scm (expt): switch if sense and use negative? rather than
166 >= 0.
167
3538c2b2
MV
1682002-10-04 Marius Vollmer <mvo@zagadka.ping.de>
169
170 * boot-9.scm (top-repl): Use "1" instead of "%deliver-signals" to
171 limit the signal stack.
172
f4232aa6
MV
1732002-09-15 Marius Vollmer <mvo@zagadka.ping.de>
174
175 * boot-9.scm (feature?): Added deprecation message.
176
5fc0857e
RB
1772002-09-14 Rob Browning <rlb@defaultvalue.org>
178
179 * boot-9.scm (sqrt): minor indentation fix.
180
cfcdb8e9
MV
1812002-09-05 Marius Vollmer <mvo@zagadka.ping.de>
182
183 * syncase.scm: Set the module transformer of the-syncase-module so
184 that we can use define-syntax.
185 (define-syntax-public): New and exported.
186
1872002-09-04 Marius Vollmer <mvo@zagadka.ping.de>
188
189 * syncase.scm (expansion-eval-closure, env->eval-closure): New.
190 (sc-macro): Set the expansion-eval-closure expanding the form.
191 (putprop, getprop): Use the expansion-eval-closure to find
192 variables instead of the current module.
193
fdf7e1d7
MV
1942002-07-08 Marius Vollmer <mvo@zagadka.ping.de>
195
196 * slib.scm (make-exchanger): Added. Thanks to Clinton Ebadi!
197
7c38399f
DH
1982002-07-07 Dirk Herrmann <D.Herrmann@tu-bs.de>
199
200 * boot-9.scm (define-option-interface): Replaced "macro" by
201 mmacro.
202
1334c61a
GH
2032002-06-01 Gary Houston <ghouston@arglist.com>
204
205 * boot-9.scm (file-set-position): Make third argument optional,
206 for SCM compatibility.
207 (file-position): simplify definition.
208
be87cdb7
MV
2092002-06-01 Marius Vollmer <mvo@zagadka.ping.de>
210
211 * boot-9.scm (file-set-position): Use seek instead of fseek.
212
e717bf46
MV
2132002-05-09 Marius Vollmer <mvo@zagadka.ping.de>
214
215 * format.scm (format:out-inf-nan): New.
216 (format:out-fixed, format:out-expon, format:out-general): Use it
217 to print infs and nans.
218
219 * boot-9.scm (unsetenv): New, for completeness.
220
9ea4ac37
MV
2212002-05-08 Marius Vollmer <mvo@zagadka.ping.de>
222
223 * format.scm (format:fn-max): Increase to 400 so ~f and ~g can
224 print long real numbers with large positive and negative
225 exponents.
226
45845efe
MV
2272002-05-06 Marius Vollmer <mvo@zagadka.ping.de>
228
229 * syncase.scm: Use (ice-9 threads) so that with-mutex is defined.
230
0bd1b44f
TTN
2312002-04-30 Thien-Thi Nguyen <ttn@giblet.glug.org>
232
233 * gap-buffer.scm: New file.
234
235 * Makefile.am (ice9_sources): Add gap-buffer.scm.
236
c87af2d5
RB
2372002-03-12 Rob Browning <rlb@defaultvalue.org>
238
239 * syncase.scm: fix bad let.
240 (gensym): fix failure on non-threaded
241
6c5b8521
TTN
2422002-03-05 Thien-Thi Nguyen <ttn@giblet.glug.org>
243
244 * ftw.scm: New file.
245
246 * Makefile.am (ice9_sources): Add ftw.scm.
247
327d4dd3
TTN
2482002-02-26 Thien-Thi Nguyen <ttn@giblet.glug.org>
249
250 * Makefile.am: Update path to pre-inst-guile automake frag.
251
d51b42e2
TTN
252 * boot-9.scm: Comment grammar fixes; nfc.
253 Thanks to Christopher Cramer.
254
46151112
RB
2552002-02-24 Rob Browning <rlb@defaultvalue.org>
256
257 * syncase.scm (gensym): redefine locally so we can control it's
258 properties. This is in preparation for changing the future public
259 gensym to produce unreadable symbols.
260
261 * psyntax.pp: updated to reflect new syncase.scm.
262
90d4a6b0
TTN
2632002-02-07 Thien-Thi Nguyen <ttn@giblet.glug.org>
264
265 * regex.scm: Add commentary; nfc.
266
0187b4f4
TTN
2672002-02-05 Thien-Thi Nguyen <ttn@giblet.glug.org>
268
269 * Makefile.am: Include $(top_srcdir)/pre-inst-guile.am.
270
271 (psyntax.pp): Use $(preinstguile).
272
dd580bd6
MV
2732002-01-14 Marius Vollmer <mvo@zagadka.ping.de>
274
275 * psyntax.ss (datum->syntax-object): Removed assertion in
276 datum->syntax-object that checked if the first argument, a
277 syntax-object, is an identifier. This was a unconvenient and
278 unnecessary restriction. Thanks to Dorai Sitaram!
279
0e6f7775
MV
2802002-01-12 Marius Vollmer <mvo@zagadka.ping.de>
281
282