* readline.scm (apropos-completion-function): regexp-quote text to
[bpt/guile.git] / ice-9 / ChangeLog
CommitLineData
edd9ac21
MD
11998-06-13 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
2
3 * readline.scm (apropos-completion-function): regexp-quote text to
4 be completed.
5
a66c53a8
MD
61998-06-11 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
7
edd9ac21 8 * debug.scm, emacs.scm: Bugfix: Treat `the-last-stack' as a fluid.
a66c53a8 9
d38a6802
MD
101998-06-09 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
11
12 * boot-9.scm: Check that (current-input-port) is a tty before
13 enabling readline. (Thanks to Michael N. Livshin.)
14
cf266109
MD
151998-06-07 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
16
17 * boot-9.scm (use-syntax): Turned into a macro inorder to be
18 similar in use to `use-modules'.
19 Example: (use-syntax (ice-9 syncase)) will 1. load the module
20 (ice-9 syncase), and, 2. install the procedure `syncase' as eval
21 transformer.
22 (internal-use-syntax): New procedure.
23 (process-define-module): Use `internal-use-syntax'.
24
67da6c57
MD
251998-05-19 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
26
27 * Makefile.am (ice9_sources): Add emacs.scm.
28
1b558afd
MD
291998-05-13 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
30
31 * readline.scm: Use the new readline facilities: Add the
32 possibility to control input and output ports; Add apropos
33 completion.
34
35 * boot-9.scm: Antirevert Jim's readline code which he reverted
36 19971027 and adapt it to the current readline interface.
37
38 * boot-9.scm (top-repl): Only enable readline if not using the
39 Emacs interface; Only use repl prompt when using the readline port
40 from repl-read. (We don't want to see it when calling `read'.)
41
42 * boot-9.scm (remove-hook!): Parenthesis bug.
43
f246e585
MD
441998-05-11 Mikael Djurfeldt <mdj@kenneth>
45
46 * boot-9.scm: Load readline module if readline is present.
47
48 * readline.scm (apropos-completion-function): New procedure:
49 Symbolic completion. (Thanks to Andrew Archibald!)
50
f714ca8e
MD
511998-04-22 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
52
53 * boot-9.scm (process-define-module): Added keyword use-syntax.
54
3ede541d
MD
551998-04-19 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
56
57 * nonblocking.scm: Removed. libguile is now inherently
58 nonblocking through the use of scm_internal_select.
59
60 * emacs.scm: Removed use of nonblocking.scm.
61
62 * gwish.scm, gtcl.scm: Removed. tcltk.scm has made these
63 obsolete.
64
608cf70c
MD
651998-04-15 Mikael Djurfeldt <mdj@nada.kth.se>
66
67 * runq.scm (runq-control): Corrected spelling of enqueue!.
68 (Thanks to Karl M. Hegbloom.)
69
16b8ebbe
MD
701998-03-30 Mikael Djurfeldt <mdj@nada.kth.se>
71
72 * boot-9.scm: Added new run-time option interface eval-options.
73
abf06c12
MD
741998-03-28 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
75
76 * boot-9.scm (remove-hook!): New macro. (Thanks to Maciej
77 Stachowiak.)
78
13dc0cae
MD
791998-01-30 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
80
81 * threads.scm: Added simple error and signal handler.
82 (make-thread, begin-handler): Use this handler. The most
83 important effect of this is that signals get unmasked.
84 Previously, when a signal was thrown signals remained masked
85 (signals get masked when a signal is taken) which influenced other
86 threads.
87
841d28d7
TP
881998-01-01 Tim Pierce <twp@skepsis.com>
89
90 A better fix to the SLIB identity problem -- thanks to Marius Vollmer.
91 * slib.scm (identity): Unmake public.
92 (slib:eval): Evaluate inside `slib-module'.
93
ad76c8d9
TP
941997-12-24 Tim Pierce <twp@skepsis.com>
95
249cdba6
TP
96 * boot-9.scm: Doc fix.
97
ad76c8d9
TP
98 * slib.scm (identity): Made public.
99 (home-vicinity): New function (from SLIB/Template.scm).
100
848f2a01
TP
1011997-12-13 Tim Pierce <twp@skepsis.com>
102
103* * boot-9.scm (read-line): Rewritten to call %read-line for
104 improved speed. Minor user-visible changes: the new functions are
105 hardwired to treat the LFD character as signifying end-of-line, so
106 changing `scm-line-incrementors' will no longer affect the
107 behavior of read-line. On platforms which do not represent
108 end-of-line with a LFD character, read-line should behave more
109 like native line-processing facilities, but there is still a ways
110 to go here.
111
8bb7f646
MD
112Sat Nov 29 01:24:46 1997 Mikael Djurfeldt <mdj@kenneth>
113
114 * boot-9.scm (error-catching-loop, save-stack): `the-last-stack'
115 is now a fluid.
116
ebd79f62
TP
1171997-11-28 Tim Pierce <twp@skepsis.com>
118
848f2a01
TP
119 * boot-9.scm (find-and-link-dynamic-module): If a module directory
120 contains a .la file (a libtool support file), attempt to extract
121 the shared library name from that file. If the .la file does not
122 exist, try to link against a .so file. Libtool-generated compiled
123 modules should load more cleanly in Guile now.
ebd79f62
TP
124 (try-using-libtool-name, try-using-sharlib-name): New functions.
125
28d8ab3c
GH
126Sun Nov 9 06:10:59 1997 Gary Houston <ghouston@actrix.gen.nz>
127
128 * boot-9.scm (set-batch-mode?!, batch-mode?): initialize more
129 usefully so they will work from a script.
130
13a7ee16
MV
1311997-10-31 Marius Vollmer <mvo@zagadka.ping.de>
132
133 * boot-9.scm (inherit-print-state): Moved definition to the
134 neighborhood of the record code.
135
930b16c0
JB
136Mon Oct 27 02:05:49 1997 Jim Blandy <jimb@totoro.red-bean.com>
137
138 * boot-9.scm: Revert changes to this file from Oct 23. It turns
139 out to interact badly with the Emacs support and the Tcl/Tk
140 support. It's not a high enough priority at the moment to be
141 worth fixing. I'm leaving the other readline support in, though.
142
3fa5bb75
JB
143Sat Oct 25 14:23:22 1997 Jim Blandy <jimb@totoro.red-bean.com>
144
145 * Makefile.am: Include readline.scm in the list of files to be
146 installed, so Guile can find it for interactive use.
147 * Makefile.in: Regenerated.
148
2e368582
JB
149Thu Oct 23 01:00:33 1997 Jim Blandy <jimb@totoro.red-bean.com>
150
151 Add support for readline function.
152 * readline.scm: New module.
153 * boot-9.scm (repl-reader): New function.
154 (scm-style-repl): Call repl-reader, instead of doing the reading
155 ourselves. Remove repl-report-reset; it was never used for
156 anything.
157 (top-repl): If we've got the readline primitives, then redefine
158 repl-reader to use them.
159 If we've got the readline primitives, import the readline module.
160
161 * ls.scm (ls, lls): Don't assume (eq? #f '()).
162
163Wed Oct 22 18:26:57 1997 Jim Blandy <jimb@totoro.red-bean.com>
164
165 * calling.scm, common-list.scm, ls.scm, q.scm, runq.scm,
166 string-fun.scm: Added copyright notices; reformatted.
167
4bbbcd5c
GH
168Thu Oct 9 05:44:00 1997 Gary Houston <ghouston@actrix.gen.nz>
169
170 * expect.scm: (expect-regexec): new procedure, use it in
171 expect-strings to fix the => syntax under the new regex system.
172 (top): include regex module in define-module statement.
173
174Wed Oct 8 03:16:01 1997 Gary Houston <ghouston@actrix.gen.nz>
175
176 * (error-catching-loop): new local variable "interactive". if
177 #f, abort terminates the process.
178 (set-batch-mode?!, batch-mode?): new closures, defined in
179 error-catching-loop. the names are from scsh.
180
c115b54b
MV
1811997-10-06 Marius Vollmer <mvo@zagadka.ping.de>
182
183 * boot-9.scm (inherit-print-state): If NEW-PORT contains a
184 print-state, throw it away.
185
2e368582 186Fri Oct 3 12:00:00 Mikael Djurfeldt <mdj@nada.kth.se>
9f9aa47b
MD
187
188 * boot-9.scm (struct-layout): Use `vtable-index-layout' instead of
189 `0'.
190
2e368582 191Thu Oct 2 12:00:00 Mikael Djurfeldt <mdj@nada.kth.se>
9f9aa47b
MD
192
193 * boot-9.scm (struct-printer, make-struct-printer,
194 set-struct-printer-in-vtable!, *struct-printer*): Removed.
195 (record-type-vtable, make-record-type): Don't use make-struct-printer.
196 (record-type-vtable): User fields "prpr" (printer is no longer a
197 user field).
198 (record-type-name, record-type-fields): Decreased slot index by
199 one; Use `vtable-offset-user'.
200
2e368582 201Thu Oct 2 12:00:00 Marius Vollmer <mvo@zagadka.ping.de>
21fdbaee
MV
202
203 * boot-9.scm (inherit-print-state): New experimental function.
204
adc14c93
JB
205Tue Sep 30 13:12:48 1997 Jim Blandy <jimb@totoro.red-bean.com>
206
207 Suggestion and script from Maciej Stachowiak:
208 * boot-9.scm: Split off modules into separate, autoloadable files.
209 This reduces startup time from 10.5s to 5.5s (user cpu).
210 * calling.scm, common-list.scm, ls.scm, q.scm, runq.scm,
211 string-fun.scm: New files, containing stuff that used to be in
212 boot-9.scm.
213 * Makefile.am (ice9_sources): List new files here, for
214 distribution and installation.
215 * Makefile.in: Regenerated.
216
5aa28c1e
JB
217Mon Sep 29 23:53:55 1997 Jim Blandy <jimb@totoro.red-bean.com>
218
219 * Makefile.in: Regenerated with automake 1.2c.
220
2f110c3c
MD
221Mon Sep 29 03:21:24 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
222
d1005e3c
MD
223 * slib.scm (slib:load): slib:load first tries to load the file
224 named NAME, then NAME.scm. On error, report the error occuring at
225 the first attempt (NAME) rather than the second (NAME.scm).
226
2f110c3c
MD
227 * boot-9.scm: Bugfix: Hard-solder the print-option procedure into
228 the make-options macro so that we needn't refer to a global
229 symbol.
230
83b38198
MD
231Sun Sep 28 21:40:24 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
232
233 * debug.scm: Moved options interface procedures to boot-9.scm.
234
235 * boot-9.scm: Define options interface procedures here instead.
236
af01fdcd
JB
237Sat Sep 27 20:19:20 1997 Jim Blandy <jimb@totoro.red-bean.com>
238
239 * boot-9.scm (separate-fields-discarding-char,
240 separate-fields-after-char, separate-fields-before-char): Call
241 continuation function, RET, as advertised: with each separated
242 field a separate argument.
243
244 * Makefile.in: Regenerated with automake 1.2a.
245
534a0099
MD
246Sat Sep 20 14:23:53 1997 Mikael Djurfeldt <mdj@kenneth>
247
248 * slib.scm (slib:load): Export.
249
250 * boot-9.scm (in-vicinity): Bugfix: Don't add "/" to an empty
251 vicinity;
252 Provide defmacro.
253
8fa5faad
MD
254Thu Sep 18 01:24:31 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
255
256 * r4rs.scm (apply): Set name property to 'apply.
257
11b05261
MD
258Tue Sep 16 22:09:50 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
259
260 * boot-9.scm (keyword->symbol, display-usage-report): Changed
0a54457d
MD
261 length --> string-length. (Thanks to Aleksandar Bakic.)
262 (separate-fields-discarding-char, separate-fields-after-char,
263 separate-fields-before-char): Bugfix from Maciej Stachowiak
264 <mstachow@mit.edu>. Thanks!
a4f9b1f6
MD
265 (try-module-linked): Try to find module among those already
266 registered.
267 (try-module-dynamic-link): Removed the first test which
268 corresponds to a call to `try-module-linked'.
269 (resolve-module): Resolve modules in this order: 1. Already
270 registered modules (for example those which have been statically
271 linked), 2. Try to autoload an .scm-file, 3. Try to dynamically
272 link a .so-file.
11b05261 273
24b2aac7
MD
274Mon Sep 15 23:39:54 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
275
276 * boot-9.scm (iota): Renamed list-reverse! --> reverse!
277
7cfae7e6
MD
278Thu Sep 11 02:31:38 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
279
280 * session.scm (name): New procedure: Gives name of object.
281 (source): New procedure: Gives source of object.
282
7a0ff2f8
MD
283Wed Sep 10 20:12:45 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
284
285* * boot-9.scm (primitive-macro?): New procedure.
286
287 * slib.scm: Added hack which transfers syntactic information from
288 the builtin variable `define' to the slib version if module (ice-9
289 syncase) has been loaded. This is necessary to get correct
290 expansion inside the slib module.
291
292 * psyntax.ss (build-let, build-named-let): New output
293 constructors.
294 (build-lexical-var): Seed gensym with symbolic name.
295 (self-evaluating?): Add keywords among self-evaluating types.
296 (let): New core form.
297 (if): Removed from core language.
298 (or, and, let, cond): Removed syntactic definitions.
299 (sc-expand3): New procedure: Expander which takes optional mode
300 and eval-syntactic-expanders-when arguments.
301
302 * syncase.scm (psyncomp): New procedure: Recompiles psyntax.pp.
303 Should be used inside the (ice-9 syncase) module with (use-syntax
304 syncase) and with the current directory containing the psyntax.ss
305 source.
306 Added hack to transfer syntactic information from the builtin
307 variable `define' to the slib version if module (ice-9 slib) has
308 been loaded.
309
310Fri Sep 5 05:47:36 1997 Mikael Djurfeldt <mdj@faun.nada.kth.se>
311
312 * syncase.scm (sc-interface, sc-expand): Removed hook setup.
313 (syncase): Publish syntax transformer to be used with
314 `use-syntax'.
315 (sc-macro): Use this as the value when publishing macros.
316
317 * boot-9.scm (module-type): Added `transformer'.
318 (make-module): Modified initialization.
319 (module-transformer, set-module-transformer!): Selector and
320 mutator for module-associated transformer.
321 (set-current-module): Use module-transformer to set
322 `scm:eval-transformer'.
323 (module-use!): Previous change reverted.
324* (use-syntax): New function: Install a transformer in current
325 module.
326 (sc-interface, sc-expand): Removed! :)
327
d43f8c97
MD
328Fri Sep 5 03:09:09 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
329
330 * emacs.scm (emacs-load): Added new parameter `module'.
331
332 * syncase.scm (putprop, getprop): Modified to use the object
333 properties of the variable object corresponding to the symbol;
334 This way we can ride on the mechanisms of the module system.
335 Changed `builtin-variable' calls to `define-public' calls.
336 Setup the hooks sc-expand and sc-interface.
337
338 * boot-9.scm (sc-interface, sc-expand): New builtin variables.
339 (set-current-module): Switch to and from sc-expand as
340 scm:eval-transformer when going into and out of modules using
341 syncase macros.
342 (module-use!): Set scm:eval-transformer to sc-expand when adding
343 the syncase interface.
344
1f355b4f
MD
345Thu Sep 4 14:57:04 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
346
347 * syncase.scm (putprop): Temporary fix which publishes new syntax
348 globally (the old behaviour was complex and connected to the inner
349 workings of the current module system).
350
e9b7bb80
MD
351Wed Sep 3 21:29:13 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
352
353 * psyntax.ss: Updated.
354 psyntax.pp: Bugfix: Previous version had some leading "t":s cut
355 off!
356
e672f1b5
MD
357Tue Sep 2 00:26:42 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
358
359 * boot-9.scm (gensym): Removed (replaced by primitive).
360 (obarray-gensym): Rewritten to use `gensym'.
361 (gentemp): Rewritten to use `gensym'.
362
30d732a6
MD
363Mon Sep 1 20:08:32 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
364
365 * gtcl.scm (make-tcl-binder): Rewritten to choose bindings
366 according to the following priorities:
367 1. tcl bindings which are present in override-scheme-list
368 2. bindings from the-scm-module
369 3. tcl bindings
370 This way the gtcl module can occur first in the use-list without
371 disabling the scheme interpreter.
372 (new-interpreter): New function.
373
374 * gwish.scm: Moved initialization code for the-interpreter to
375 gtcl.scm; Moved name space cleaning code to gtcl.scm and rewrote
376 it; Call `new-interpreter'; Don't :use-module (guile).
377
1aa8162b
JB
378Thu Aug 28 23:48:53 1997 Jim Blandy <jimb@totoro.red-bean.com>
379
380 * Makefile.in: Regenerated.
381
34695603
JB
382Wed Aug 27 11:35:09 1997 Jim Blandy <jimb@totoro.red-bean.com>
383
384 * Makefile.in: Regenerated, so it uses "tar", not "gtar".
385
52f1b046
MD
386Mon Aug 25 22:00:44 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
387
388 * emacs.scm (object->string, format, error-args->string): New
389 procedures.
390 (emacs-frame-eval): Reworked.
391
a5be27cd
MD
392Mon Aug 25 16:15:55 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
393
394 * session.scm (apropos-internal): Musn't initialize symbol
395 accumulator with a constant pair. That led to mutation of the
396 source!
397
68aed3ea
MD
398Sun Aug 24 01:03:10 1997 Mikael Djurfeldt <mdj@kenneth>
399
400 * session.scm (vector-for-each): Removed.
401 (apropos): vector-for-each --> array-for-each.
402 (apropos-internal): New function. Return list of accessible
403 symbols matching regexp.
404
405 * debug.scm (frame-number->index): New function. Convert frame
406 number (as displayed in the backtrace) to frame index (to be used
407 in stack-ref).
408
409 * emacs.scm (emacs-load): New arguments: interactivep: when
410 non-false, send back results to Emacs; colnum: Column number;
411 Use modules (ice-9 debug) and (ice-9 session);
412 (no-stack, no-source): New simple-actions;
413 (result-to-emacs): New procedure. Sends data to Emacs via the
414 result protocol;
415 (get-frame-source, emacs-select-frame, emacs-frame-eval,
416 emacs-symdoc): New procedures.
8c5a8bed 417
555f21d8
MD
418Wed Aug 20 13:21:11 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
419
eb7ec1e8 420 * emacs.scm (emacs-load): Adjust stack narrowing.
8c3420ad 421 (whitespace-chars): Include #\np.
eb7ec1e8 422
555f21d8
MD
423 * syncase.scm: Also turn off debugging evaluator and recording of
424 procedure names during loading of psyntax.pp.
425
426 * psyntax.pp: Removed leading blanks => 800K -> 100K.
427
230c4353
MD
428Tue Aug 19 02:39:41 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
429
19ef2a9b
MD
430 * syncase.scm: Don't tamper with debug mode setting when enabling
431 macros. Instead cut the stack with start-stack.
a48930c6 432 Load psyntax.pp with recording of positions turned off.
19ef2a9b 433
ceb177a4 434 * psyntax.pp, psyntax.ss (quasiquote): Changed fx= --> =.
230c4353
MD
435
436* * syncase.scm: New file: Guile-adaption for syntax-case macros.
437 psyntax.pp, psyntax.ss: Syntax-case macros, portable version 2 by
438 R. Kent Dybvig, Oscar Waddell, Bob Hieb and Carl Bruggeman
439
0e81dabd
MD
440Mon Aug 18 21:58:25 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
441
442* * session.scm: New file: Session support.
443 (apropos): New procedure: List bindings given regexp.
444
6afcd3b2
GH
445Sat Aug 16 18:44:24 1997 Gary Houston <ghouston@actrix.gen.nz>
446
447 * boot-9.scm: define tms accessors: clock, utime, stime, cutime,
448 cstime.
449
096d5f90
MD
450Thu Aug 14 19:55:37 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
451
db75135d
MD
452 * emacs.scm (emacs-load): Something has changed in the reader so
453 that we now should set the port line count to the specified value
454 (linum) instead of (- linum 1).
455
096d5f90
MD
456 * slib.scm (slib:load): Use load-from-path instead of
457 primitive-load-path so that backtraces get narrowed properly at
458 the top.
459
460 * boot-9.scm (top-repl): Save stack already in signal handler in
461 order to narrow it correctly.
462 (save-stack): Adjust narrowing tag for the top of load-stacks.
463
7a6f1ffa
GH
464Tue Jul 29 01:18:08 1997 Gary Houston <ghouston@actrix.gen.nz>
465
466 * boot-9.scm (move->fdes, dup->port): use dup->fdes, not primitive-dup.
467 (dup->fdes): deleted, now done in C.
468
956055a9
GH
469Sat Jul 26 08:00:42 1997 Gary Houston <ghouston@actrix.gen.nz>
470
471 * boot-9.scm (setenv): new procedure, scsh compatible.
472
485cb6eb
MV
473Sat Jul 26 21:30:10 1997 Marius Vollmer <mvo@zagadka.ping.de>
474
475 * boot-9.scm (with-fluids): New macro to go with the
476 builtin `with-fluids*'.
477
4d0d7ef9
MD
478Thu Jul 24 04:28:11 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
479
480 * slib.scm (install-require-module): In newer versions of slib
481 *catalog* is #f until the first access. Therefore we call
482 require:provided? for a random feature if *catalog* is #f.
483
8309a10d
MD
484Wed Jul 23 20:13:04 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
485
486 * boot-9.scm: If using emacs interface, enable backtraces
487 automatically.
488
e38303a2
GH
489Mon Jul 21 06:45:45 1997 Gary Houston <ghouston@actrix.gen.nz>
490
491 * boot-9.scm (dup->port, dup->inport, dup->outport, dup->fdes,
492 dup, fdes->inport, fdes->outport, port->fdes): new procedures.
493 (duplicate-port): was a C primitive, now it's here.
494 (move->fdes): allow the first argument to be a file descriptor.
495 Return the modified port or file descriptor (was unspecified.)
496
2e3e9351
JB
497Fri Jul 11 00:13:43 1997 Jim Blandy <jimb@floss.red-bean.com>
498
32552d73
JB
499 Changes to compile under gnu-win32, from Marcus Daniels:
500 * boot-9.scm (load-user-init): If HOME is unset, provide
501 a default of /.
502
2e3e9351
JB
503 * boot-9.scm (define-public): Changed to accomodate Hobbit.
504
db561408
JB
505Tue Jun 24 00:31:47 1997 Jim Blandy <jimb@floss.red-bean.com>
506
fcff2c5c
JB
507 * boot-9.scm, debug.scm, hcons.scm, lineio.scm, mapping.scm,
508 poe.scm, slib.scm, tags.scm, threads.scm: Use normal list
509 notation, instead of #/ notation.
510
db561408
JB
511 * expect.scm (expect-strings): Pass regexp/newline flag to
512 make-regexp.
513
2409cdfa
JB
514Mon Jun 23 16:13:38 1997 Jim Blandy <jimb@floss.red-bean.com>
515
db561408
JB
516 Fix inconsistencies in parsing of #/ style lists.
517 * boot-9.scm (read-path-list-notation): New function.
518 (parse-path-symbol): Deleted. Replaced by above.
519 Plug in read-path-list-notation as the parser for #/ lists,
520 instead of the anonymous lambda form calling parse-path-symbol.
521 (Thanks to Maurizio Vitale.)
522
2409cdfa
JB
523 * boot-9.scm (make-list): Remove the definition of this function
524 from the (ice-9 common-list) module; make the `init' argument
525 optional in the scm module's definition, to match the deleted
526 definition. Harmony reigneth? (Thanks to Bernard URBAN.)
527
91b28bb5
JB
528Sun Jun 22 18:33:17 1997 Jim Blandy <jimb@floss.red-bean.com>
529
530 Try to detect when people are using one version of libguile and a
531 different version of ice-9. People have been skewing things and
532 sending in bug reports.
533 * version.scm.in: New file, which the configure script munges to
534 produce version.scm, which contains the ice-9 config stamp.
535 * boot-9.scm: Compare the libguile and ice-9 config stamps;
536 display a warning if the two are different.
537 * Makefile.am: Install version.scm, but don't distribute it.
538 Distribute version.scm.in, but don't install it.
539 * Makefile.in: Regenerated.
540
9fbdb48f
JB
541Thu Jun 19 21:01:16 1997 Jim Blandy <jimb@floss.red-bean.com>
542
543 * slib.scm (slib:warn): Alias for WARN function.
544
e320da2f
JB
545Fri Jun 13 00:32:04 1997 Jim Blandy <jimb@floss.red-bean.com>
546
547 * boot-9.scm (struct-printer): Fix off-by-one error in range
548 check. Correctly check for struct printer tag.
549
550 * expect.scm: Turn this into a module, (ice-9 expect).
551 (expect-port, expect-timeout, expect-timeout-proc,
552 expect-eof-proc, expect-char-proc, expect, expect-strings,
553 expect-select): Make these public definitions.
554 (expect-strings): Use make-regexp and regexp-exec, instead of
555 regcomp and regexec. We've omitted the REG_NEWLINE flag; hope
556 that's okay.
557
558 * boot-9.scm (with-regexp-parts): Comment this out. It has no
559 users in the core, and relies on mildly hairy details of the old
560 regexp interface.
561
562 * test.scm: Re-enable tests asserting that '() is true, and not a
563 boolean. This stuff has been true for a while.
564
565 * boot-9.scm (ipow-by-squaring, butlast): Fix uses of outdated
566 function names.
567
568 * boot-9.scm (with-excursion-getter-and-setter, q-rear): Doc
569 fixes.
570
3688473b
JB
571Wed Jun 11 00:31:40 1997 Jim Blandy <jimb@floss.red-bean.com>
572
573 * Makefile.in: Regenerated after xtra_PLUGIN_guile_libs change in
574 ../configure.in.
575
0b46857f
MV
576Fri Jun 6 14:37:18 1997 Marius Vollmer <mvo@zagadka.ping.de>
577
578 * boot-9.scm (struct-printer): Bugfix: Check the layout of the
579 vtable and not the one of the struct.
580
5dade857
MV
581Wed Jun 4 23:27:16 1997 Marius Vollmer <mvo@zagadka.ping.de>
582
583 * boot-9.scm (struct-layout, %struct-printer-tag, struct-printer,
584 make-struct-printer, set-struct-printer-in-vtable!): New bindings
585 to support printing of structures.
586 (record-type-vtable, make-record-type): Add slot to hold printing
587 function and initialize it with something appropriate. Removed
588 commented out printing code.
589 (record-type-name, record-type-fields): Adjusted slot offsets.
590 (%print-module): Reduce argument list to "mod" and "port".
591
95d59d10
JB
592Tue Jun 3 17:04:18 1997 Jim Blandy <jimb@totoro.cyclic.com>
593
594 * slib.scm (identity): New function, used by SLIB.
595
e1a191a8
GH
596Sat May 31 18:57:12 1997 Gary Houston <ghouston@actrix.gen.nz>
597
598 * boot-9.scm: signal-handler, alarm-thunk: removed.
599 don't define ticks-interrupt etc.
600 top-repl: install signal handlers for SIGINT, SIGFPE, SIGSEGV, SIGBUS
601 during call to scm-style-repl.
602
19da35d0
JB
603Fri May 30 18:08:10 1997 Jim Blandy <jimb@floss.cyclic.com>
604
605 * slib.scm (slib:load): Use primitive-load-path instead of
606 basic-load. This is probably wrong, but hopefully the entire
607 source access system will be revised soon anyway, and this will
608 make require behave more like Emacs Lisp's require. If this
609 breaks something, please let me know. Maybe this is real dumb.
610
0e165281
JB
611Thu May 29 02:36:48 1997 Jim Blandy <jimb@floss.cyclic.com>
612
613 * regex.scm: Add a module declaration. Use DEFINE-PUBLIC everywhere.
614 * boot-9.scm: If the `regex' feature is present, use the module
615 (ice-9 regex).
616
737c9113
JB
617Tue May 27 22:48:14 1997 Tim Pierce <twp@twp.tezcat.com>
618
619 * regex.scm: New file.
620 * Makefile.am (subpkgdata_DATA): Add regex.scm.
621 * Makefile.in: Regenerated.
622
36539a15
JB
623Mon May 26 17:24:48 1997 Jim Blandy <jimb@totoro.cyclic.com>
624
625 * COPYING, boot-9.scm, debug.scm, emacs.scm, expect.scm, gtcl.scm,
626 gwish.scm, hcons.scm, lineio.scm, mapping.scm, nonblocking.scm,
627 oldprint.scm, poe.scm, r4rs.scm, source.scm, tags.scm, test.scm,
628 threads.scm: New address for FSF.
629
142ad3d9
JB
630Fri May 16 04:09:45 1997 Jim Blandy <jimb@floss.cyclic.com>
631
632 * debug.scm: Update copyright years; this file has been worked on
36539a15 633 in 1997.
142ad3d9 634
cafa4c68
GH
635Thu May 15 07:56:08 1997 Gary Houston <ghouston@actrix.gen.nz>
636
637 * expect.scm: use gettimeofday instead of get-internal-real-time
638 and use a floating point timeout when calling select. Untested,
639 since the regex library is currently AWOL.
640
223be5f0
JB
641Wed May 14 21:00:30 1997 Jim Blandy <jimb@floss.cyclic.com>
642
643 * boot-9.scm (eval-string): Function deleted; it was already
644 implemented in C, so there's no point in making a divergable copy
645 here.
646
9b01064c
JB
647Tue May 13 16:40:06 1997 Jim Blandy <jimb@floss.cyclic.com>
648
649 * Makefile.in: Regenerated, using automake-1.1p.
650
651Tue May 13 16:40:06 1997 Jim Blandy <jimb@floss.cyclic.com>
652
653 * Makefile.in: Regenerated, using automake-1.1p.
654
1fbc60b2
GH
655Tue May 13 02:48:49 1997 Gary Houston <ghouston@actrix.gen.nz>
656
657 * boot-9.scm (error-catching-loop): don't read a line from
658 current input when quit is encountered, the previous change
659 fixes this too.
660
c7d97590
JB
661Mon May 12 19:00:21 1997 Jim Blandy <jimb@floss.cyclic.com>
662
663 * boot-9.scm (scm-style-repl): After reading an expression,
664 consume any trailing newline (perhaps preceded by whitespace), to
665 avoid screwing up GDB. More detail in comments.
666
6b3f3366
JB
667Mon May 5 13:18:38 1997 Jim Blandy <jimb@floss.cyclic.com>
668
669 * Makefile.am (ETAGS_ARGS): New variable, since we're not treating
670 the Scheme code like code yet.
671 * Makefile.in: Resrac,husrched.
672
eea324ee
MV
673Wed Apr 30 15:25:15 1997 Marius Vollmer <mvo@zagadka.ping.de>
674
675 * boot-9.scm (link-dynamic-module): Do not catch errors from
676 dynamic-link and dynamic-call. When the shared library exists it
677 is now assumed to be suitable for a dynamic C module.
678
ef79b65b
MV
679Fri Apr 25 21:21:35 1997 Marius Vollmer <mvo@zagadka.ping.de>
680
681 * boot-9.scm (process-use-modules): New function to support the
682 use-modules macro
683 (use-modules): throw an error iff one of the requested modules
684 can't be found.
685
3be77013
GH
686Tue Apr 29 06:54:46 1997 Gary Houston <ghouston@actrix.gen.nz>
687
688 * boot-9.scm: don't define timer-thunk or gc-thunk.
689
28c682fa
JB
690Sun Apr 27 17:56:09 1997 Jim Blandy <jimb@floss.cyclic.com>
691
692 * aclocal.m4: Removed; unnecessary, given changes of Apr 24.
693
694 * Makefile.am (subpkgdatadir): Use "ice-9" instead of "@module@";
695 we're not using AM_INIT_GUILE_MODULE any more.
696 * Makefile.in: Regeneratitetedrerd.
697
20108301
JB
698Thu Apr 24 01:33:33 1997 Jim Blandy <jimb@floss.cyclic.com>
699
819f936b
JB
700 Get 'make dist' to work again.
701 * Makefile.am (EXTRA_DIST): Remove PLUGIN files.
702 * Makefile.in: Regenerated, like two tons of fleas.
703
20108301
JB
704 Changes for reduced Guile distribution: one configure script,
705 no plugins.
706 * configure.in, configure: Removed.
707 * Makefile.in: Regenerated.
708
dab94cac
JB
709Sat Apr 19 08:03:50 1997 Jim Blandy <jimb@floss.cyclic.com>
710
48d224d7 711 * boot-9.scm (eval-string, command-line, load-user-init): New
dab94cac
JB
712 functions.
713
65495221
GH
714Sat Apr 12 08:27:05 1997 Gary Houston <ghouston@actrix.gen.nz>
715
716 * boot-9.scm (log10): defined.
717
708bf0f3
GH
718Tue Apr 1 17:46:49 1997 Gary Houston <ghouston@actrix.gen.nz>
719
720 * expect.scm (expect-select): correct the millisecond timeout
721 arithmetic (from Marko.Kohtala@ntc.nokia.com).
722
723Mon Mar 31 03:23:19 1997 Gary Houston <ghouston@actrix.gen.nz>
724
725 * boot-9.scm (open-input-pipe, open-output-pipe): defined here
726 instead of in libguile.
727 (tm:sec etc.) new accessors for broken-down time.
728 (set-tm:sec etc.) new setters for broken-down time.
729
9337637f
GH
730Thu Mar 27 05:06:00 1997 Gary Houston <ghouston@actrix.gen.nz>
731
732 * boot-9.scm (netent:addrtype, servent:port): added missing
733 procedures.
734 (netent:net, servent:proto): repaired.
735 (utsname:sysname etc.): new accessors for uname.
736
737Tue Mar 25 03:04:03 1997 Gary Houston <ghouston@actrix.gen.nz>
738
739 * boot-9.scm (sockaddr:fam, sockaddr:path, sockaddr:addr,
740 sockaddr:port): new functions.
741
bce074ee
GH
742Wed Mar 19 04:50:34 1997 Gary Houston <ghouston@actrix.gen.nz>
743
744 * boot-9.scm: define accessor procedures for the objects returned
745 by getpw, getgr, gethost, getnet, getproto, getserv (e.g.,
746 passwd:name, where the first component is the name of the C structure
747 and the second is the unprefixed C member name.)
748
749Tue Mar 18 18:39:31 1997 Gary Houston <ghouston@actrix.gen.nz>
750
095936d2 751 * boot-9.scm (setpwent, setgrent, sethostent, setnetent, setprotoent,
bce074ee
GH
752 setservent): no longer take an argument, it was bogus.
753
81e2a235
GH
754Thu Mar 13 00:13:41 1997 Gary Houston <ghouston@actrix.gen.nz>
755
756 * boot-9.scm (scm-error): deleted, reimplemented in C.
757
04798288
MD
758Mon Mar 10 15:48:31 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
759
760 * boot-9.scm (process-define-module): Modified to handle both
761 keywords and symbols.
762
75a97b92
GH
763Sat Mar 8 04:32:44 1997 Gary Houston <ghouston@actrix.gen.nz>
764
765 * slib.scm: update read usage.
766
767 * r4rs.scm: update primitive-load usage.
768 Don't define read-sharp.
769
770 * boot-9.scm: use read-hash-extend to install extra read syntax.
771 (read-sharp): removed.
772 Adjust usage of primitive-load-path, read, which no longer take
773 case_i or read-sharp arguments.
774
63a3d814
MD
775Sat Mar 8 00:07:54 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
776
90d5e280
MD
777 * boot-9.scm: Added loading of session support module.
778
63a3d814
MD
779 * debug.scm: Removed `display-application'. (Replaced by
780 primitive procedure.)
781
782 * boot-9.scm (beautify-user-module!): Don't add the root module
783 interface to the end of the use-list of the root module.
784
75a97b92
GH
785Thu Mar 6 07:26:34 1997 Gary Houston <ghouston@actrix.gen.nz>
786
787 * boot-9.scm: repl-quit, repl-abort: obsolete variables deleted.
788
f3c23298
GH
789Wed Mar 5 20:30:24 1997 Gary Houston <ghouston@actrix.gen.nz>
790
791 * boot-9.scm: check use-emacs-interface for emacs support.
792
7950df7c
GH
793Sun Mar 2 19:47:14 1997 Gary Houston <ghouston@actrix.gen.nz>
794
795 * boot-9.scm (scm-style-repl): call repl-report-start-timing if
796 read gets EOF.
797 * (exit): alias for quit.
798
8e44e7a0
GH
799Sun Mar 2 05:25:11 1997 Gary Houston <ghouston@actrix.gen.nz>
800
801 * boot-9.scm (error-catching-loop thunk): use a status variable to
802 return the quit args.
803 (scm-style-repl): call -quit, passing return value from
804 error-catching-repl. Make -quit return its args.
1a36eef2 805 stand-alone-repl: comment out, since it seems unused.
7950df7c 806
8e44e7a0
GH
807 (error-catching-loop thunk): discard trailing junk after a (quit).
808
9a942103
MD
809Sat Mar 1 15:24:39 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
810
06a02069
MD
811 * boot-9.scm: Removed the old printer code.
812
813 * r4rs.scm (apply, call-with-current-continuation): Added comment
814 explaining why apply and call/cc need to be closures.
815
816 * boot-9.scm (apply, call-with-current-continuation): Bugfix:
817 Removed. These definitions are already present in r4rs.scm.
818
9a942103
MD
819 * debug.scm (trace-entry, trace-exit): Check that we're on a repl
820 stack before printing traced frames; Re-enable trace flag at end
821 of handlers.
822
e6875011
MD
823Sat Mar 1 00:10:38 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
824
59e1116d
MD
825 * debug.scm: Add hook for reset of trace level at abort.
826
827 * boot-9.scm (run-hooks): New procedure.
828 (add-hooks!): New macro.
829 Change hooks to use these functions.
830
095936d2 831 * debug.scm: *Warning* This feature is a bit premature. I add
e6875011
MD
832 it anyway because 1. it is very useful, and, 2. you can start
833 making it less premature by complaining to me and by modifying
834 the source! :-)
835 (trace): Given one or more procedure objects, trace each one.
836 Given no arguments, show all traced procedures.
837 (untrace): Given one or more procedure objects, untrace each one.
838 Given no arguments, untrace all traced procedures. The tracing in
839 Guile have an advantage to most other systems: We don't create new
840 procedure objects, but mark the procedure objects themselves.
841 This means that also anonymous and internal procedures can be
842 traced.
843
844 * boot-9.scm (error-catching-loop): Added handling of apply-frame
845 and exit-frame exceptions.
846
095936d2 847 * boot-9.scm (assert-repl-prompt, the-prompt-string): Removed.
e6875011
MD
848 (set-repl-prompt!): Setter for repl prompt.
849 (scm-style-repl): If prompt is #f, don't prompt; if prompt is a
850 string, display it; if prompt is a thunk, call it and display its
851 result; otherwise display "> ".
852 (Change suggested by Roland Orre <orre@nada.kth.se>.)
0065d90e
MD
853
854 * r4rs.scm (%load-verbosely): Reverted change to
855 `module-defined?', since the module system isn't bootstrapped when
856 we load r4rs.scm. This is just a temporary fix to make the
857 repository version runnable.
858
eb52a06b
MD
859Thu Feb 27 23:25:47 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
860
861 * boot-9.scm: Removed the enabling of debug evaluator and
862 recording of source code positions. This was placed there for our
863 convenience, but it has already sneaked into the distribution
864 once... so we'd better add this in our local copies instead when
865 we need it. (These options are normally enabled at the end of
866 boot-9.scm when loading the debug module.)
867
d18d1b6d
MV
868Thu Feb 27 16:04:45 1997 Marius Vollmer <mvo@zagadka.ping.de>
869
870 * boot-9.scm (module-defined?): New function.
871 (macroexpand-1, macroexpand): Use local-ref instead of defined?
872 and eval.
873 * r4rs.scm (%load-verbosely): Use "module-defined?" instead of
874 "defined?".
875 * slib.scm (defined?): New function to take the place of the
876 builtin "defined?". It allways examines the slib module.
877
15ae1bee
MD
878Mon Feb 24 21:46:15 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
879
880 * configure.in: Added AM_MAINTAINER_MODE
881
c2132276
GH
882Sat Feb 15 04:51:20 1997 Gary Houston <ghouston@actrix.gen.nz>
883
884 * boot-9.scm (read-sharp): define directly, don't go through a
885 %read-sharp layer.
886
887Tue Feb 11 08:45:48 1997 Gary Houston <ghouston@actrix.gen.nz>
888
889 * boot-9.scm (uniform-vector-set!): use uniform-array-set1!, not
890 uniform-vector-set1! which doesn't exist.
891
d590bbf6
MD
892Mon Feb 10 03:01:48 1997 Mikael Djurfeldt <mdj@kenneth>
893
894 * boot-9.scm (backtrace): Removed. (A C version now exists in
895 backtrace.c.)
896
1e531c3a
GH
897Fri Jan 24 06:05:36 1997 Gary Houston <ghouston@actrix.gen.nz>
898
899 * boot-9.scm (read-line!, read-delimited!, read-delimited,
900 read-line): new procedures, see libguile/ChangeLog.
901
bb0102f7
MV
902Thu Jan 16 17:07:03 1997 Marius Vollmer <mvo@zagadka.ping.de>
903
904 Added dynamic linking of modules. See libguile/DYNAMIC-LINKING.
905
906 * boot-9.scm (split-c-module-name, convert-c-registered-modules,
907 init-dynamic-module, dynamic-maybe-call,
908 find-and-link-dynamic-module, link-dynamic-module,
909 try-module-dynamic-link, registered-modules): New definitions for
910 dynamic linking of modules.
911 (resolve-module): Try to dynamically link the requested module
912 after failing to load it as Scheme code.
913
920235cc
GH
914Wed Jan 8 05:50:14 1997 Gary Houston <ghouston@actrix.gen.nz>
915
916 * boot-9.scm (getservbyport, getservbyname): remove stray %.
917
198befde
JB
918Tue Jan 7 20:02:24 1997 Jim Blandy <jimb@floss.cyclic.com>
919
920 * boot-9.scm (and=>): Rename THUNK argument to PROCEDURE, 'cos
921 that's what it is.
922
923 * lineio.scm (make-line-buffering-input-port): Properly test for
924 the case of an empty buffer list. The old code assumed that '()
925 was false.
926
33cf699f
MD
927Mon Jan 6 01:13:53 1997 Mikael Djurfeldt <mdj@kenneth>
928
095936d2 929 * boot-9.scm (use-modules): New macro (from Marius Vollmer).
33cf699f
MD
930 (use-modules <module name> ...) Put the the modules named by
931 <module name> ... on the use list of the current module.
932
7a818853
JB
933Sun Jan 5 15:52:59 1997 Jim Blandy <jimb@floss.cyclic.com>
934
935 * boot-9.scm (error-catching-loop): Remove message saying that
936 typing "$" will put you in the debugger. This isn't implemented
937 yet.
938
506067f0
JB
939Sun Dec 22 23:27:25 1996 Jim Blandy <jimb@floss.cyclic.com>
940
941 * boot-9.scm (delq-all!): Function deleted; delq!'s semantics have
942 been fixed, so this function is superfluous.
943 (transform-usage-lambda): Use delq!, not delq-all!.
944
2ebf3156
MV
945Tue Dec 17 20:36:45 1996 Marius Vollmer <mvo@zagadka.ping.de>
946
7a818853 947 * boot-9.scm (resolve-module): New optional parameter that
2ebf3156
MV
948 controls whether autoloading is attempted or not. Default is #t.
949 (process-define-module): Don't autoload the defined module.
950 (try-module-autoload): Don't autoload the directory modules.
951
7a818853 952 * boot-9.scm (process-define-module): Ensure that the-scm-module
2ebf3156
MV
953 is last in the `uses' list to allow shadowing builtin
954 bindings. All :use-module options are added in the order they
955 appear in the arguments but before anything already on the list
956 (such as the-scm-module).
957
00f06035
GH
958Wed Dec 11 21:06:05 1996 Gary Houston <ghouston@actrix.gen.nz>
959
960 * slib.scm (slib-parent-dir): throw error if #f returned from
961 %search-load-path.
962
733943b9
TT
963Sat Nov 30 23:57:28 1996 Tom Tromey <tromey@cygnus.com>
964
965 * PLUGIN/greet, PLUGIN/split.sed, PLUGIN/this.configure: Removed.
966 * Makefile.am, aclocal.m4: New files.
967 * configure.in: Updated for Automake.
968
84abd243
MV
969Wed Nov 27 14:16:14 1996 Marius Vollmer <mvo@zagadka.ping.de>
970
971 * boot-9.scm (macroexpand-1, macroexpand), slib.scm
972 (slib:features), r4rs.scm (%load-verbosely): "defined?" is now a
973 function, use it accordingly.
974
a31bc6fb
JB
975Thu Nov 21 11:12:10 1996 Jim Blandy <jimb@floss.cyclic.com>
976
977 It's an "eval closure", not an "eval thunk." A thunk is a
978 function of no arguments.
979 * boot-9.scm (module-type): Rename module field.
980 (make-module, eval-in-module, make-root-module,
981 set-current-module): Uses changed.
982 (module-eval-closure, set-module-eval-closure!,
983 root-module-closure): Renamed from module-eval-thunk,
984 set-module-eval-thunk!, root-module-thunk.
985 (set-current-module): Change uses of *top-level-lookup-thunk* to
986 *top-level-eval-closure*.
987
3763761c
JB
988Wed Nov 20 14:45:27 1996 Jim Blandy <jimb@totoro.cyclic.com>
989
990 * slib.scm (slib-parent-dir): Use string-length, not length.
991 (Thanks to Bernard Urban.)
992
7ad737b6
MD
993Sat Nov 2 20:00:42 1996 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
994
7a818853 995 * boot-9.scm: The debugging evaluator and recording of positions
7ad737b6
MD
996 aren't enabled by default any longer (they are switched on in
997 debug.scm). But during development we want to have them also
998 *inside* boot-9.scm. Therefore, two lines are added at the
999 beginning of boot-9.scm to enable these.
1000
1001 Call `provide' so that `records' are included among the
1002 `*features*'.
1003
1004 The scheme for saving the stack has been adjusted: save-stack is
1005 now commonly available for saving the stack. Calling `save-stack'
1006 sets a flag `stack-saved?' which prevents overwriting the stack.
1007 `stack-saved?' is reset at `abort'.
1008
1009 Spelling correction: seperate --> separate.
1010
1011 Removed `:'s that had creeped into some comments.
1012
7a818853 1013 The repl now doesn't print #<unspecified> results any longer
7ad737b6
MD
1014 If the user wants to see this, he can do
1015 (assert-repl-print-unspecified #t) in his startup file.
1016
7a818853 1017 The user now gets a friendly message instead of a backtrace at
7ad737b6
MD
1018 error.
1019
1020 Added `before-read-hook'.
1021
1022 Load module (ice-9 emacs) if option `-e' was specified.
1023
1024 (provide): New function.
1025
1026 (error): Save stack at entry, so that Guile entrails won't show up
1027 in backtraces.
1028
1029 (backtrace): New function.
1030
7a818853 1031 (save-stack): Can now take arbitrary number of stack narrowing
7ad737b6
MD
1032 specifier pairs. The first specifier in a pair controls inner
1033 border, the second the outer border. A number means cut that
1034 number of frames, a procedure object means cut until that object
1035 is found in operator position in a frame.
1036
1037 * debug.scm: Enable debugging evaluator and recording of positions
1038 by default.
1039
1040 * slib.scm (slib:load): Adapt to the new behavior of
1041 primitive-load: It doesn't any longer try both with and without
1042 ".scm" extension. (We don't want to use %search-load-path here.)
1043
1044 (implementation-vicinity): New function. slib requires it
1045
1046 (library-vicinity): Updated.
1047
1048 Load "require.scm" in the library-vicinity.
1049
1050 (install-require-vicinity, install-require-module): New functions.
1051
99f97bfe
JB
1052Mon Oct 28 17:56:29 1996 Jim Blandy <jimb@floss.cyclic.com>
1053
581a242b
JB
1054 * boot-9.scm (load-from-path): New function.
1055
1056 * boot-9.scm (try-load, basic-try-load, try-load-module,
1057 try-load): Deleted. I don't think they're being used.
1058
48be3fb3
JB
1059 * Makefile.in (scm_files): Add r4rs.scm and test.scm to this list,
1060 so they'll get distributed.
1061
1062 Get Guile to be a little less chatty by default. The new user
1063 should see as little clutter as possible.
1064 * r4rs.scm (%load-verbosely): Make this #f by default.
1065 * boot-9.scm (scm-repl-verbose): Make this #f by default.
1066 (scm-style-repl): Don't run 'pk' on the value passed to quit.
1067
1068 * r4rs.scm: New file.
1069 * boot-9.scm: Load r4rs.scm, first thing.
1070 (OPEN_READ, OPEN_WRITE, OPEN_BOTH, *null-device*, open-input-file,
1071 open-output-file, open-io-file, close-input-port,
1072 close-output-port, close-io-port, call-with-input-file,
1073 call-with-output-file, with-input-from-port, with-output-to-port,
1074 with-error-to-port, with-input-from-file, with-output-to-file,
1075 with-error-to-file, with-input-from-string, with-output-to-string,
1076 with-error-to-string, the-eof-object): Definitions moved to
1077 r4rs.scm. Not all of them are R4RS, but those that are use those
1078 that are not.
1079 (load, %load-verbosely, %load-announce): Moved, along with code to
1080 set %load-hook, to r4rs.scm.
1081
1082 * test.scm: New file.
1083
1084 * boot-9.scm (integer?): Definition deleted, in favor of the one
1085 present in libguile (which used to be called int?). I have no
1086 idea why integer? didn't just call int? to begin with.
1087
1088 * boot-9.scm (<, <=, =, >, >=): Definitions in terms of <?, <=?,
1089 =?, >?, and >=? deleted; they're defined that way by libguile now.
1090
99f97bfe
JB
1091 * boot-9.scm (load): Simplified; primitive-load does most of this
1092 work now.
1093 (%load-announce-win): Removed; no longer used. Set %load-hook to
1094 call %load-announce.
1095
3afb28ce
GH
1096Sun Oct 27 07:47:03 1996 Gary Houston <ghouston@actrix.gen.nz>
1097
4fe3604d
JB
1098 * boot-9.scm (stat:dev, stat:ino, stat:mode, stat:nlink, stat:uid,
1099 stat:gid, stat:rdev, stat:size, stat:atime, stat:mtime,
1100 stat:ctime, stat:blksize, stat:blocks) accessor functions for stat
1101 components.
3afb28ce
GH
1102 (file-is-directory?): use stat:type.
1103
3065a62a
JB
1104Fri Oct 25 03:34:47 1996 Jim Blandy <jimb@floss.cyclic.com>
1105
1106 * boot-9.scm (%read-sharp): Don't recognize the `#!' syntax here;
1107 that's now taken care of in libguile, and in a way compatible with
1108 SCSH (which this isn't).
1109
e4c5095f
JB
1110Mon Oct 21 18:52:36 1996 Jim Blandy <jimb@totoro.cyclic.com>
1111
1112 * boot-9.scm: Formatting tweaks.
1113
1bb961a3
MD
1114Fri Oct 18 01:03:08 1996 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1115
1116 * boot-9.scm (handle-system-error): Added hooks before-error-hook,
1117 after-error-hook, before-backtrace-hook and after-backtrace-hook
1118 to the error handler. E.g.: fancy emacs support could plug into
1119 these.
1120 (save-stack): New function. The stack is now made differently
1121 depending on the stack id. (The motivation is to make a better
1122 choice regarding what stack frames to present to the user.)
1123 (error-catching-loop): Stack handling code moved outside into
1124 save-stack.
1125
9a0d70e2
GH
1126Thu Oct 17 20:33:08 1996 Gary Houston <ghouston@actrix.gen.nz>
1127
d7189b49
GH
1128 * Makefile.in (scm_files): add expect.scm.
1129
1130 * expect.scm: new file ported from guile-iii.
1131
9a0d70e2
GH
1132 * boot-9.scm: remove handle-system-error, after moving the code into
1133 error-catching-loop.
1134 Don't set 'throw-handler-default property on error keys.
1135 Just interpret (almost) any throw with 4 args as an error throw.
1136 Delete some try-load stuff that was already commented out.
1137
35c5db87
GH
1138 Second thoughts, keep handle-system-error but call it from
1139 error-catching-loop.
1140
d065b65f
JB
1141Tue Oct 15 17:07:20 1996 Jim Blandy <jimb@floss.cyclic.com>
1142
aa9576ad
JB
1143 * boot-9.scm: Doc fixes.
1144 (make-module): Rework for readability.
1145 (make-root-module, make-scm-module): USES argument to make-module
1146 should be '(), not #f.
1147
d065b65f
JB
1148 * boot-9.scm (try-load): %sys-load-path has been renamed to
1149 primitive-load-path; adjust call here.
1150
c01c94bf
MD
1151Tue Oct 15 14:25:01 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
1152
d065b65f 1153 * boot-9.scm (signal-handler): Bugfix: Moved the recording of
c01c94bf
MD
1154 the stack to the correct place: when it is decided to generate an
1155 error-signal.
1156
2dfc85c0
MD
1157Mon Oct 14 22:20:30 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
1158
1159 * boot-9.scm (error-catching-loop, signal-handler,
1160 handle-system-error): Backtracing now works for signals aswell;
1161 Backtracing mechanism can now identify the stack root created by
1162 start-stack so that the user isn't exposed to system stack frames.
1163
84d8ad97
MD
1164Mon Oct 14 06:05:42 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
1165
1166 * Makefile.in: Added threads.scm.
1167
4f0292cf
MD
1168Mon Oct 14 04:21:51 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
1169
1170 * debug.scm (make-enable, make-disable): Simplified.
1171
1172 * boot-9.scm: Renamed %%throw-handler-default -->
1173 throw-handler-default.
1174 ((handle-system-error key . arg-list)): Changed the way errors are
1175 reported.
1176 ((scm-style-repl)): Wrap up the call to eval in a start-stack
1177 acro.
1178 ((error-catching-loop thunk)): Introduce a lazy-catch into
1179 error-catching-loop so that the stack can be captured.
1180
1eaceb61
JB
1181Thu Oct 10 22:27:32 1996 Jim Blandy <jimb@totoro.cyclic.com>
1182
1183 * mapping.scm (hash-table-mapping): Explicitly request that
1184 make-vector fill new vectors with '(); this will make it easier to
1185 port Guile Scheme code to other Schemes.
1186 * boot-9.scm (make-print-style, make-print-table): Same.
1187
6fa8995c
GH
1188Sun Oct 6 03:54:59 1996 Gary Houston <ghouston@actrix.gen.nz>
1189
1190 * boot-9.scm (load): rewritten again.
1191 Append "." to the default %load-path.
1192 (feature?): new function: checks for a symbol in the features list.
1193 (module-local-variable): remove apparently useless (caddr (list m v
1194 ...))
1195 (%load-announce): minor formatting change.
1196 (file-exists?): use access? if posix is featured.
1197 (file-is-directory?): use stat if i/o-extensions is featured.
1198 (try-module-autoload module-name): use file-exists? before
1199 file-is-directory?
1200
8b4a21d1
MD
1201Sat Oct 5 18:54:03 1996 Mikael Djurfeldt <mdj@kenneth>
1202
8acae5bb
MD
1203 * boot-9.scm: Added conditional loading of threads.scm.
1204
1205 * threads.scm: New file. Modified from the Cygnus-r0.3
1206 distribution.
1207
8b4a21d1
MD
1208 * boot-9.scm (error-catching-loop): Added handling of key
1209 `switch-repl'.
1210
1211 * boot-9.scm: Name change %%bad-throw --> bad-throw.
1212
c90c9685
JB
1213Wed Oct 2 23:38:44 1996 Jim Blandy <jimb@totoro.cyclic.com>
1214
1215 * boot-9.scm (make-record-type, record-constructor): Don't assume
1216 the empty list is false when parsing the argument list.
1217
1218Mon Sep 30 22:15:50 1996 Jim Blandy <jimb@totoro.cyclic.com>
1219
1220 * boot-9.scm (signal-handler): Clean up logic.
1221
1222 * boot-9.scm (load): Assume %load-path is always bound.
1223
5552355a
GH
1224Sat Sep 28 00:15:37 1996 Gary Houston <ghouston@actrix.gen.nz>
1225
1226 * boot-9.scm (error): replace another throw with scm-error. Throw
1227 to 'misc-error instead of 'error (no need to distinguish these.)
1228 Don't set up 'error as a key.
1229 Set up regex-error as a key, if regex is available.
1230 (signal-handler): use scm-error, not throw.
1231
7a818853 1232 (%try-load, try-load-with-path, %load, load-with-path,
5552355a
GH
1233 basic-try-load-with-path, basic-load-with-path,
1234 try-load-module-with-path,load-module-with-path): deleted, since
1235 they seem redundant.
1236 (try-load): define using %try-load, not try-load-with-path.
7a818853 1237 (load): rewritten. load tries to open the file directly and
5552355a
GH
1238 with a .scm extension before searching the library directories
1239 (should "." be added to %load-path? then load could still open
1240 directly files starting with "/").
1241 (try-module-autoload): use load, not load-with-path.
1242 (%load-indent): deleted, -2 was causing errors.
1243
1244 (%read-sharp): use port-line, not line-number.
1245
c90c9685
JB
1246Fri Sep 27 16:23:51 1996 Jim Blandy <jimb@totoro.cyclic.com>
1247
1248 * boot-9.scm (%%bad-throw): Delete definition. 1) It's very
1249 straightforward to provide the equivalent functionality using
1250 (catch #t ...), so there's no need for the extra complexity. 2)
1251 Outside the context of a read-eval-print loop (which Guile should
1252 not require) it's not clear we should do anything more complicated
1253 than print an error and exit; the user or REPL can establish
1254 something better if it wants. 3) In that case, it's much more
1255 robust to just do it in the C code.
1256
855c0eac
GH
1257Tue Sep 24 06:53:04 1996 Gary Houston <ghouston@actrix.gen.nz>
1258
1259 * boot-9.scm (%try-load): define using primitive-load. Previously
1260 %try-load itself was the primitive.
1261 (load-with-path): use scm-error instead of %load-announce-lossage.
1262 Errors are thrown to 'misc-error instead of 'could-not-load.
1263 (%load-announce-lossage): deleted.
1264
a0c97697
MD
1265Mon Sep 23 00:16:31 1996 Mikael Djurfeldt <mdj@kenneth>
1266
1267 * boot-9.scm (warn, scm-style-repl): Use C printer instead of `print'.
1268 (make-record-type type-name fields): Temporarily remove support
1269 for printing of records (not possible yet with C printer).
1270
be2d2c70
GH
1271Fri Sep 20 00:24:27 1996 Gary Houston <ghouston@actrix.gen.nz>
1272
1273 * boot-9.scm (file-exists?, file-is-directory): catch only
1274 system-error, not every kind of error.
1275 (scm-error): new procedure.
1276
434bf5ce
JB
1277Thu Sep 19 16:02:46 1996 Jim Blandy <jimb@totoro.cyclic.com>
1278
1279 * boot-9.scm: Formatting tweaks.
1280
2194b6f0
GH
1281Wed Sep 18 09:07:37 1996 Gary Houston <ghouston@actrix.gen.nz>
1282
1283 * boot-9.scm (%%handle-system-error key): remove the code for
1284 SCM-style errors. handle the case that an unexpected number
1285 of args are supplied.
1286 (%%system-errors): removed.
1287 (error): redefine using a throw with key and 4 args.
1288 ('error): associate 'error, 'error-signal keys with
1289 %%handle-system-error.
1290 (%%default-error-handler): removed.
1291 (signal-handler): throw with 4 args and use the error-signal key.
1292 Create an error message instead of using numerical codes.
1293 (%%bad-throw): call error instead of throw if key not found.
1294
1295Tue Sep 17 04:11:28 1996 Gary Houston <ghouston@actrix.gen.nz>
1296
1297 * boot-9.scm: initialize new error keys (see libguile/ChangeLog).
1298 (%%handle-system-error key): check subr is not #f before printing.
1299 Recognize %s (embed an argument using "display") and
1300 %S (embed an argument using "write").
1301
234f2da6
GH
1302Sun Sep 15 03:55:35 1996 Gary Houston <ghouston@actrix.gen.nz>
1303
1304 * boot-9.scm (%%handle-system-error key): set args and rest to
1305 the empty list if they are #f.
1306 Initialize out-of-range as an error key.
1307
e1724d20
GH
1308Sat Sep 14 03:41:15 1996 Gary Houston <ghouston@actrix.gen.nz>
1309
40c8906e
GH
1310 * PLUGIN/REQ: remove the "ice-9 lgh" line which causes a cycle.
1311
e1724d20
GH
1312 * boot-9.scm: remove leading %% from references to '%%system-error.
1313 (%%handle-system-error): don't pass all the thrown arguments when
1314 aborting, just the key and subr.
1315 Remove the code to "Install default handlers for built-in errors."
1316 Remove the definition of the syserror procedure.
1317 Associate 'numerical-overflow with default handler.
1318
1a80fb07
MD
1319Fri Sep 13 04:58:11 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
1320
1321 * boot-9.scm: Name change: value-ref --> local-ref
1322 resolved-ref --> nested-ref Motivation: conformance to the other
1323 dictionary operators: list-ref operates on list, vector-ref
1324 operates on vector, nested-ref operates on nested namespace,
1325 local-ref operates on the local nested namespace.
1326
7cb1d4d3
GH
1327Sat Sep 7 06:44:47 1996 Gary Houston <ghouston@actrix.gen.nz>
1328
1329 * boot-9.scm (%%handle-system-error): recognise errors thrown
1330 by lgh-error (fill-message etc.)
9561554c 1331 (fill-message): check first whether args is null.
a949b3f2 1332 (fill-message): bug fix and check that args is a list.
7cb1d4d3 1333
393ee9a8
JB
1334Thu Sep 5 11:33:41 1996 Jim Blandy <jimb@floss.cyclic.com>
1335
1336 * boot-9.scm: %load-path is initialized in C code now.
1337 (implementation-vicinity, parse-path): Deleted, along with code to
1338 initialize %load-path.
1339
1340 * boot-9.scm (in-vicinity): If the vicinity doesn't end with a
1341 "/", use one to separate it from the file.
1342
e4ef46d4
JB
1343Thu Aug 29 23:05:11 1996 Thomas Morgan <tmorgan@gnu.ai.mit.edu>
1344
1345 * boot-9.scm (%load-path): Add the site directory.
1346 Add the directory named after the version number.
1347 Prepend the version number to the other directories in the path.
1348 Simplify by mapping the common prefix onto each item.
1349 * Makefile.in (datadir, pkgdatadir, pkgverdatadir, subpkgdatadir,
1350 sitedatadir): New definitions.
1351 (libparent, libdir, install_path): Replaced by above.
1352 (install): Create the above directories.
1353 Put the source files into subpkgdatadir.
1354 (uninstall): Remove the above directories.
1355
00312aa3
JB
1356Thu Aug 29 21:48:47 1996 Jim Blandy <jimb@floss.cyclic.com>
1357
1358 Don't use the PLUGIN system to gather information for the
1359 Makefile's distribution and installation targets; just put it all
1360 in the Makefile directly.
1361 * PLUGIN/this.configure (scm_files, aux_files): Remove sections
1362 for these.
1363 * configure.in: Remove code that gets and substitutes scm_files and
1364 aux_files.
1365 * Makefile.in (scm_files, aux_files): Write out the list of files
1366 here, where people expect to find them.
1367
96a8aaf3
MD
1368Fri Aug 23 06:44:36 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
1369
1370 * boot-9.scm: Preliminary solution: optionally load the debug
7685f77c 1371 module. Changed "gls" to "guile1.0b3".
96a8aaf3
MD
1372
1373 * debug.scm: New file: debug extensions.
1374
4e378733
MD
1375Wed Aug 21 13:06:56 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
1376
1377 * boot-9.scm (print-vector): Renamed weak-hash-table? -->
1378 weak-key-hash-table?. (Again!)
1379
0190d683
MD
1380Tue Aug 20 07:31:39 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
1381
1382 * boot-9.scm (print-vector, macro-table, xformer-table):
1383 Renamed weak-hash-table --> weak-key-hash-table.
1384
1385 * poe.scm (funcq-memo): Renamed weak-hash-table -->
1386 weak-key-hash-table.
1387
8b13c6b3
GH
1388Sat Aug 3 06:16:35 1996 Gary Houston <ghouston@actrix.gen.nz>
1389
1390 * boot-9.scm (*null-device*): global constant from goonix.
1391 (move->fdes): adjusted for boolean primitive-move->fdes. return
1392 the modified port, always set revealed count to 1 (SCSH compatible).
1393 (release-port-handle port): from goonix (SCSH compatible).
1394 (%open-file): removed.
1395 (open-input-file, open-output-file, file-exists?, file-is-directory?):
1396 modified for open-file change (does not return #f).
1397
a44a755d
JB
1398Thu Aug 1 02:52:42 1996 Jim Blandy <jimb@totoro.cyclic.com>
1399
1400 * Makefile.in (dist-dir): New target for new dist system.
1401 (manifest): Deleted.
1402 * PLUGIN/this.configure (aux_files): Removed PLUGIN; it's a
1403 directory, and needs special treatment in the dist-dir target.
1404
02b754d3
GH
1405Thu Aug 1 09:00:21 1996 Gary Houston <ghouston@actrix.gen.nz>
1406
1407 * boot-9.scm: remove the wrappers for '%' system primitives,
1408 now that they throw errors directly.
1409 remove make-simple-wrapper and similar functions.
1410 protect a call to getenv which may now throw an exception.
1411
1412Wed Jul 31 23:44:42 1996 Gary Houston <ghouston@actrix.gen.nz>
1413
1414 * boot-9.scm (false-if-exception): new macro.
1415
0f2d19dd
JB
1416Fri Apr 19 13:53:08 1996 Tom Lord <lord@beehive>
1417
1418 * The more things change...
1419
1420