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