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