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