*** empty log message ***
[bpt/guile.git] / ice-9 / ChangeLog
1 2001-09-08 Thien-Thi Nguyen <ttn@revel.glug.org>
2
3 * optargs.scm (lambda*): Record the broken-down argument list in
4 the `arglist' procedure property.
5 * session.scm (arity): Use new `arglist' procedure property to
6 present a more detailed argument list.
7
8 Thanks to Matthias Köppe!
9
10 2001-09-07 Thien-Thi Nguyen <ttn@revel.glug.org>
11
12 * getopt-long.scm (process-options, getopt-long): Fix omission
13 bug: Handle multiple occurrances of an option. Thanks to Daniel
14 Skarda.
15
16 2001-08-31 Dirk Herrmann <D.Herrmann@tu-bs.de>
17
18 * boot-9.scm: Don't load module (ice-9 rdelim).
19
20 (feature?): Deprecated.
21
22 (id, -1+, return-it, string-character-length, flags,
23 eval-in-module, split-c-module-name,
24 (convert-c-registered-modules, registered-modules,
25 register-modules, warn-autoload-deprecation, init-dynamic-module,
26 dynamic-maybe-call, dynamic-maybe-link,
27 find-and-link-dynamic-module, try-using-libtool-name,
28 try-using-sharlib-name, link-dynamic-module, try-module-linked,
29 try-module-dynamic-link): Removed.
30
31 (module-make-local-var!, module-ensure-local-variable!,
32 module-define!): Eliminate call to `variable-set-name-hint!´.
33
34 (try-load-module, use-syntax, module-export!): Remove deprecated
35 functionality.
36
37 * format.scm: Remove deprecated definition of format that was
38 needed to trick export.
39
40 2001-08-31 Dirk Herrmann <D.Herrmann@tu-bs.de>
41
42 * optargs.scm: Remove #& reader extension.
43
44 2001-08-31 Dirk Herrmann <D.Herrmann@tu-bs.de>
45
46 * and-let-star-compat.scm: Deleted.
47
48 * Makefile.am: Remove references to and-let-star-compat.scm.
49
50 2001-08-30 Thien-Thi Nguyen <ttn@revel.glug.org>
51
52 * boot-9.scm (resolve-interface): When returning a custom
53 interface, also consult source module's entire binding set,
54 not just its exported bindings, before throwing error.
55
56 2001-08-25 Marius Vollmer <mvo@zagadka.ping.de>
57
58 * boot-9.scm (resolve-interface): Get variables from the public
59 interface of a module instead of from the module itselfs.
60
61 2001-08-25 Marius Vollmer <mvo@zagadka.ping.de>
62
63 * Makefile.am (AUTOMAKE_OPTIONS): Change "foreign" to "gnu".
64
65 2001-08-12 Thien-Thi Nguyen <ttn@revel.glug.org>
66
67 * getopt-long.scm: Rewrite.
68 Touch up docstrings.
69 Augment commentary.
70
71 2001-08-02 Neil Jerram <neil@ossau.uklinux.net>
72
73 * debugger.scm (run-last-command): Return current state if
74 last-command fluid is not yet set.
75
76 2001-08-02 Thien-Thi Nguyen <ttn@revel.glug.org>
77
78 * getopt-long.scm: Refill to fit in 80 columns.
79
80 (process-long-option): Fix bug: Keep track of `optional'
81 value-required info and use this to determine whether or not the
82 next element is to be taken as the option arg.
83
84 2001-07-31 Keisuke Nishida <knishida@nurs.or.jp>
85
86 * boot-9.scm (process-define-module): Fixed a bug that did not
87 handle :use-syntax correctly.
88
89 2001-07-24 Marius Vollmer <mvo@zagadka.ping.de>
90
91 * syncase.scm (psyncomp): Removed, it is now in
92 compile-psyntax.scm.
93
94 2001-07-23 Marius Vollmer <mvo@zagadka.ping.de>
95
96 * Makefile.am (psyntax.pp): Enable rule for psyntax.pp only in
97 maintainer mode. Use compile-psyntax.scm for actual compilation.
98 Make sure the uninstalled guile is used.
99 (EXTRA_DIST): Distribute compile-psyntax.scm
100 * compile-psyntax.scm: New file.
101
102 2001-07-18 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
103
104 * and-let-star.scm, debug.scm, debugger.scm, history.scm,
105 lineio.scm, null.scm, optargs.scm, r4rs.scm, r5rs.scm,
106 receive.scm, safe-r5rs.scm, streams.scm: Updated copyright notice.
107
108 2001-07-17 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
109
110 * r5rs.scm: Use `re-export' instead of `export' for re-exported
111 primitives. Thanks Neil!
112
113 2001-07-13 Marius Vollmer <mvo@zagadka.ping.de>
114
115 * safe-r5rs.scm: Use `re-export' instead of `export' for
116 re-exported core bindings. Do not re-export `numerator',
117 `denominator' and `rationalize' since Guile does not have them.
118 Continue to use `export' for `null-environment'.
119
120 * null.scm: Use `re-export' instead of `export' for re-exported
121 core bindings. Do not export `unquote' and `unquote-splicing'
122 since there aren't definitions for them.
123
124 * boot-9.scm (compile-interface-spec): Bug fix: the keyword
125 argument is "renamer" not "rename".
126
127 2001-07-09 Rob Browning <rlb@defaultvalue.org>
128
129 * boot-9.scm: Fixed the sense of the error message when read-eval?
130 is #f. Thanks to Matthias for catching this.
131
132 2001-07-06 Rob Browning <rlb@defaultvalue.org>
133
134 * boot-9.scm: added fix suggested by Matthias for #. read
135 extension -- now only works if read-eval? is not #f.
136
137 2001-06-30 Dirk Herrmann <D.Herrmann@tu-bs.de>
138
139 * arrays.scm: Don't install a read-hash-extension for 'b': #b
140 is already defined by R5RS. Further, there is already a working
141 read syntax for bitvectors, starting with #*.
142
143 2001-06-30 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
144
145 * Makefile.am (ice9_sources): Removed tags.scm.
146
147 * tags.scm: Removed file.
148
149 2001-06-29 Neil Jerram <neil@ossau.uklinux.net>
150
151 Changes to support tracing other than inside the repl-stack that
152 is set up by the REPL code in boot-9.scm.
153
154 * debug.scm (trace-entry, trace-exit): Conditionalize tracing on
155 whether the current stack id is in `traced-stack-ids'.
156 (traced-stack-ids, trace-all-stacks?, trace-stack, untrace-stack):
157 New.
158
159 2001-06-27 Marius Vollmer <mvo@zagadka.ping.de>
160
161 * common-list.scm (member-if): Put in docstring for member-if, it
162 was a cut-n-paste error previously.
163
164 2001-06-26 Neil Jerram <neil@ossau.uklinux.net>
165
166 * debug.scm (trace): Set evaluator trap options to handle tracing.
167 Don't reset trace-level to 0.
168
169 * boot-9.scm (lazy-handler-dispatch): Remove enter-frame-handler,
170 apply-frame-handler and exit-frame-handler. (They're replaced by
171 evaluator trap options.)
172
173 2001-06-25 Michael Livshin <mlivshin@bigfoot.com>
174
175 * streams.scm (stream-for-each-many): typo fix.
176
177 2001-06-25 Marius Vollmer <mvo@zagadka.ping.de>
178
179 * boot-9.scm (re-export-syntax): New.
180
181 2001-06-16 Marius Vollmer <mvo@zagadka.ping.de>
182
183 * boot-9.scm (system-error-errno): New.
184
185 2001-06-14 Marius Vollmer <mvo@zagadka.ping.de>
186
187 * common-list.scm (remove-if, remove-if-not): Fix typo: use
188 `pred', not `pred?', in the body.
189
190 2001-06-13 Thien-Thi Nguyen <ttn@revel.glug.org>
191
192 * match.scm:
193 No longer use module `(ice-9 slib)'.
194 Use module `(ice-9 pretty-print)'.
195 No longer require `pretty-print'.
196
197 (slib:error): Delete.
198 (match:error, match:syntax-err): Rewrite.
199
200 Thanks to Dale P. Smith.
201
202 * README: New file.
203
204 * common-list.scm:
205 Clean up some docstrings; nfc.
206 Add Commentary.
207 Update copyright.
208
209 2001-06-11 Marius Vollmer <mvo@zagadka.ping.de>
210
211 * boot-9.scm: Use `begin-deprecated' instead of testing
212 `include-deprecated-features' when conditionally using the (ice-9
213 rdelim) module. See below.
214
215 2001-06-10 Gary Houston <ghouston@arglist.com>
216
217 * boot-9.scm: use the (ice-9 rdelim) module if
218 include-deprecated-features is true.
219
220 2001-06-09 Marius Vollmer <mvo@zagadka.ping.de>
221
222 * pretty-print.scm (generic-write): Use `object->string' to print
223 unknown objects.
224
225 * optargs.scm (lambda*): Make sure that BODY is always put into a
226 real body context so that it can contain internal definitions.
227 Thanks to Matthias Köppe!
228
229 * format.scm: Use (ice-9 and-let-star).
230 (format:out): Initialize format:output-col with current column of
231 `port', if it has one. Else leave it alone. Thanks to Matthias
232 Köppe!
233
234 2001-06-05 Marius Vollmer <mvo@zagadka.ping.de>
235
236 * boot-9.scm (module-ensure-local-variable!): Renamed from
237 `module-ensure-variable!'. Make sure that there really is a local
238 variable, not just a visible one.
239 (module-ensure-variable!): See above.
240 (module-export!): Behave like always when deprecated features are
241 enabled, but issue a warning when re-exporting a variable. When
242 deprecated features are disabled, only export local variables,
243 creating them uninitialized when they don't yet exist.
244 (module-re-export!): New. Use this for re-exporting imported
245 variables.
246 (re-export): New, to go with `module-re-export!'.
247
248 * format.scm: Added kluge at top that keeps `export' from
249 re-exporting the `format' variable of the `(guile)' module.
250
251 2001-06-04 Marius Vollmer <mvo@zagadka.ping.de>
252
253 * boot-9.scm (named-module-use!, top-repl): Use resolve-interface
254 instead of resolve-module to get at the used module.
255
256 2001-06-04 Gary Houston <ghouston@arglist.com>
257
258 * rw.scm: export write-string/partial.
259
260 2001-06-04 Marius Vollmer <mvo@zagadka.ping.de>
261
262 Added exception notice to all files.
263
264 * boot-9.scm (module-export!): Revert 2001-06-02 change. It
265 caused more problems than it solved by accidentally re-exporting
266 importing bindings once in a while.
267
268 2001-06-03 Marius Vollmer <mvo@zagadka.ping.de>
269
270 * boot-9.scm (try-load-module): Bracket calls to try-module-linked
271 and try-module-dynamic-link with `begin-deprecated'.
272 (split-c-module-name, convert-c-registered-modules,
273 registered-modules, register-modules, warn-autoload-deprecation,
274 init-dynamic-module, dynamic-maybe-call, dynamic-maybe-link,
275 find-and-link-dynamic-module, try-using-libtool-name,
276 try-using-sharlib-name, link-dynamic-module, try-module-linked,
277 try-module-dynamic-link): Deprecated. Activate deprecation
278 message.
279 (define-public): Define binding before exporting it. This is to
280 avoid accidentally re-exporting a imported binding.
281
282 2001-06-02 Marius Vollmer <mvo@zagadka.ping.de>
283
284 * Makefile.am (psyntax.pp): Make it dependent on psyntax.ss and
285 fix command so that it works.
286
287 * session.scm (apropos-fold, submodules, apropos): Be careful not
288 to access unbound variables.
289
290 * boot-9.scm (module-ensure-variable!): New.
291 (module-export!): Use it to ensure that there is a variable to
292 export. Previously, we would always create a new variable, copy
293 the value over, and export the new variable. This confused
294 syncase since it keys important properties on variables.
295
296 2001-06-01 Marius Vollmer <mvo@zagadka.ping.de>
297
298 * boot-9.scm (top-repl): Revert part of the 2001-05-19 change.
299 When defining the guile-user module, do not use any modules. Add
300 them to guile-user when `top-repl' is called.
301 (resolve-interface): Expect keyword arguments instead of a `spec'.
302 (compile-interface-spec, compile-define-module-args): New.
303 (define-module): Use compile-define-module-args to construct
304 argument for process-define-module.
305 (use-modules, use-syntax): Use compile-interface-spec to construct
306 arguments for process-use-modules.
307 (process-define-module): Expect keywords in argument list.
308
309 2001-05-25 Marius Vollmer <mvo@zagadka.ping.de>
310
311 * boot-9.scm (cond-expand): Define using
312 `procedure->memoizing-macro' to get at the lexical environment.
313 Use `env-module' instead of `current-module' to get the right
314 module.
315
316 * Makefile.am (ice9_sources): Added "pretty-print.scm".
317 * pretty-print.scm: New file, copied from SLIB.
318 (generic-write): Return the `unspecified' value.
319
320 * format.scm: Autoload `pretty-print'.
321
322 2001-05-23 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
323
324 * boot-9.scm (%cond-expand-table): New hash table mapping modules
325 to feature lists.
326 (cond-expand): Use feature information associated with modules.
327
328 2001-05-21 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
329
330 * boot-9.scm (use-srfis): Do not extend the srfi-0 feature list.
331 (cond-expand-provide): New procedure.
332
333 2001-05-22 Marius Vollmer <mvo@zagadka.ping.de>
334
335 * boot-9.scm (define-module): Return the new module.
336 (process-define-module): Use `spec' instead of `module-name' when
337 getting the syntax transformer. Thanks to Matthias Köppe!
338
339 2001-05-21 Marius Vollmer <mvo@zagadka.ping.de>
340
341 * boot-9.scm (use-syntax): Do not set scm:eval-transformer when
342 deprecated features have been removed. Thanks to Dale P. Smith!
343
344 * optargs.scm (#\&): Use `issue-deprecation-warning' instead of
345 `display'.
346
347 2001-05-19 Marius Vollmer <mvo@zagadka.ping.de>
348
349 * psyntax.ss (build-lexical-var): Use gensym instead of gentemp.
350 * match.scm: Likewise.
351 * expect.scm: Likewise.
352 * psyntax.pp: Regenerated.
353
354 * rdelim.scm: Call `%init-rdelim-builtins'.
355
356 * rw.scm: Call `%init-rw-builtins'.
357
358 * boot-9.scm (process-define-module): Do not call
359 set-current-module.
360 (define-module): Do it here, in the expansion.
361 (top-repl): Do not define '(guile-user)' module and conditionally
362 load `(ice-9 threads)' and/or `(ice-9 regex)' here. Do it on
363 top-level as the last thing in boot-9.scm instead.
364 (%load-path): Use `list' instead of `cons' to create a single
365 element list when adding "." to it.
366 (process-define-module, process-use-modules, module-export!): Add
367 dummy definitions prior to booting the mdule system.
368
369 2001-05-18 Thien-Thi Nguyen <ttn@revel.glug.org>
370
371 * boot-9.scm: (resolve-interface, use-srfis): Small
372 cleanup; nfc.
373 (process-define-module): Internal proc `unrecognized'
374 now accepts arg; update callers.
375 Reverse order of interfaces added to module to be
376 consistent with that specified in `define-module' form.
377
378 * session.scm: (help): Use `provided?' instead of `feature?'.
379 Factor "TYPE not found for X" output into internal proc.
380 Support `(quote SYMBOL)'; call `search-documentation-files'.
381 (help-doc): If initial search fails, try using
382 `search-documentation-files'.
383 (apropos-fold-accessible, apropos-fold-all): Use `identity'
384 instead of `(lambda (x) x)'. "An identity edit", ha ha.
385 (help-usage): Mention support for "(help 'NAME)".
386
387 * documentation.scm: Fix documentation for Guile Documentation
388 Format Version 2: Mention required terminating newlines.
389
390 (find-documentation): Delete.
391 (search-documentation-files): New proc, exported.
392 (object-documentation): Use `search-documentation-files'.
393
394 2001-05-15 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
395
396 * boot-9.scm (cond-expand-features): Made the feature list public,
397 so it can be manipulated by `use-srfis'.
398 (use-srfis): New procedure.
399
400 2001-05-15 Thien-Thi Nguyen <ttn@revel.glug.org>
401
402 * boot-9.scm (resolve-interface): Signal error now also if
403 used module's public interface is not available.
404 No longer call `beautify-user-module!'.
405 Signal error now also if selected binding not found.
406
407 2001-05-10 Marius Vollmer <mvo@zagadka.ping.de>
408
409 Merge from mvo-vcell-clenaup-1-branch.
410
411 * session.scm (apropos): Do not use `builtin-bindings', always use
412 the module obarray.
413 (apropos-fold): Likewise.
414
415 * optargs.scm (bound?): Removed. We should not play games with
416 the magical undefined value.
417 (let-o-k-template): Use `#f' instead of the undefined value as
418 the default default for bindings.
419
420 * boot-9.scm (module-make-local-var!): Do not pass name hint to
421 make-undefined-variable, use `variable-set-name-hint!' instead.
422 (root-module-closure): Removed.
423 (make-root-module): Set the obarray of the module to the
424 `pre-modules-obarray'. Do not use a lazy binder.
425 (scm-module-closure): Removed.
426 (make-root-module): Set the obarray of the module to the
427 `pre-modules-obarray'. Do not use a lazy binder. Set the
428 eval-closure to a `standard-interface-eval-closure'.
429 (module-define!): Do not pass name hint to make-variable, use
430 `variable-set-name-hint!' instead.
431 (make-modules-in, beautify-user-module, resolve-module): Moved
432 towards the beginning of boot-9.scm, across the call to
433 set-current-module that boots the module system. These
434 definitions need to be visible at the time of the first
435 `set-current-module' call.
436 (try-module-autoload): Define a `#f' before the call to
437 set-current-module. It is redefined later.
438
439 * debug.scm: Use `module-set!' instead of `variable-set!' to set
440 insert `debug-options' into the-root-module.
441 * format.scm: Likewise, for `format'.
442
443 2001-05-15 Marius Vollmer <mvo@zagadka.ping.de>
444
445 * boot-9.scm (error-catching-repl): Call the E
446 ("eval'er") procedure via call-with-values and call the P
447 ("printer") for each produced value. Thanks to Matthias Köppe!
448
449 2001-05-14 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
450
451 * boot-9.scm (cond-expand): Reduce feature list to built-in
452 features.
453
454 2001-05-14 Dirk Herrmann <D.Herrmann@tu-bs.de>
455
456 * boot-9.scm (-1+, return-it, string-character-length, flags):
457 Deprecated.
458
459 2001-05-11 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
460
461 * boot-9.scm: Added `cond-expand' (SRFI-0) for portable feature
462 checking.
463
464 2001-05-10 Thien-Thi Nguyen <ttn@revel.glug.org>
465
466 * boot-9.scm (resolve-module): Abstraction maintenance: Use
467 `module-public-interface'.
468 (resolve-interface): Extend to handle selection and renaming in spec.
469 Arg is now `spec' which can be a simple module name (list of symbols)
470 or a interface spec.
471 (symbol-prefix-proc): New proc.
472 (%autoloader-developer-mode): Delete.
473 (process-define-module): Use "define-module" in error messages
474 instead of "defmodule". Factor error into internal proc.
475 Rewrite `use-module' and `use-syntax' handlers.
476 Replace some single-arm `if-not' constructs w/ `or'.
477 (process-use-modules): Arg is now `module-interface-specs',
478 which is passed through to `resolve-interface' as before; nfc.
479 (named-module-use!, top-repl): Abstraction maintenance: Use
480 `provided?'.
481
482 2001-05-06 Thien-Thi Nguyen <ttn@revel.glug.org>
483
484 * q.scm, runq.scm, getopt-long.scm: Update copyright.
485 Surround commentary w/ standard markers; nfc.
486
487 * expect.scm: Update copyright.
488 Fix commentary typo; nfc.
489
490 2001-05-05 Rob Browning <rlb@cs.utexas.edu>
491
492 * psyntax.ss: make sure emacs knows it's scheme code.
493
494 2001-05-05 Neil Jerram <neil@ossau.uklinux.net>
495
496 * boot-9.scm (use-syntax): Change error message to say
497 `use-syntax' rather than `use-modules'.
498
499 2001-05-02 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
500
501 * safe-r5rs.scm: Fix typo: make-rectangualr => make-rectangular.
502
503 2001-05-02 Marius Vollmer <mvo@zagadka.ping.de>
504
505 * boot-9.scm (begin-deprecated): New.
506 (call-with-deprecation): Removed.
507 (id): Use `issue-deprecation-warning' instead of
508 `call-with-deprecation'. Wrap definition in `begin-deprecated'.
509 (eval-in-module): Manifest deprecation via `begin-deprecation' and
510 `issue-deprecation-warning'.
511 (warn-autoload-deprecation): Deactivated.
512
513 2001-04-26 Marius Vollmer <mvo@zagadka.ping.de>
514
515 * boot-9.scm (the-module, set-current-module, current-module):
516 Removed, they are now defined in libguile.
517
518 2001-04-29 Gary Houston <ghouston@arglist.com>
519
520 * rw.scm: new file, for module (ice-9 rw).
521 * Makefile.am: add rw.scm.
522
523 2001-04-28 Thien-Thi Nguyen <ttn@revel.glug.org>
524
525 * boot-9.scm, optargs.scm:
526 Surround commentary w/ standard markers; nfc.
527
528 * threads.scm, time.scm, channel.scm, expect.scm:
529 Add commentary; nfc.
530
531 2001-04-27 Thien-Thi Nguyen <ttn@revel.glug.org>
532
533 * documentation.scm: Update copyright.
534 Add commentary.
535 Use `define-module' `:export' clause instead of `define-public'.
536 Autoload (ice-9 regex) on `match:suffix'.
537
538 (default-in-line-re, default-after-line-re): New vars.
539 (default-scrub): New proc.
540 (file-commentary): New proc, exported.
541 (object-documentation): Expand docstring; nfc.
542
543 * session.scm: Update copyright.
544 Use (ice-9 rdelim).
545
546 (help): Consider a list of symbols that does not start with
547 `quote' as a module name and call `module-commentary' on it.
548 (module-filename, module-commentary): New procs.
549 (id): Delete.
550 (apropos): Use `identity' instead of deprecated `id'.
551 (help-usage): Add blurb about "(help (my module))" support.
552
553 2001-04-27 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
554
555 * Makefile.am (ice9_sources): Remove srfi-8.scm.
556
557 2001-04-26 Rob Browning <rlb@cs.utexas.edu>
558
559 * srfi-8.scm: removed in favor of srfi/srfi-8.scm - (wasn't ever
560 in a production release).
561
562 2001-04-25 Keisuke Nishida <kxn30@po.cwru.edu>
563
564 * channel.scm: New file.
565 * Makefile.am (ice9_sources): Include channel.scm.
566
567 2001-04-19 Keisuke Nishida <kxn30@po.cwru.edu>
568
569 * receive.scm (receive): Use `define-macro'.
570
571 2001-04-15 Keisuke Nishida <kxn30@po.cwru.edu>
572
573 * boot-9.scm (load-compiled): New variable, initialized in the VM.
574 (try-module-autoload): Try loading compiled modules if applicable.
575
576 2001-04-15 Keisuke Nishida <kxn30@po.cwru.edu>
577
578 * boot-9.scm (call-with-deprecation): New procedure.
579 (identity): New procedure.
580 (id): Deprecated.
581
582 2001-04-15 Keisuke Nishida <kxn30@po.cwru.edu>
583
584 * boot-9.scm (defmacro, define-macro, define-syntax-macro):
585 Define only at the top level.
586
587 2001-04-06 Thien-Thi Nguyen <ttn@revel.glug.org>
588
589 * threads.scm: Update copyright.
590
591 Use `export' and `export-syntax' instead of
592 `define-public' and `defmacro-public'.
593
594 (make-thread): Rename first arg to `proc'; nfc.
595 (begin-thread, monitor): Rename second arg to `rest'; nfc.
596 (with-mutex): Rename second arg to `body'; nfc.
597
598 2001-04-06 Neil Jerram <neil@ossau.uklinux.net>
599
600 * boot-9.scm (warn-autoload-deprecation): Close parenthesis in
601 "You just tried to autoload ..." message.
602
603 2001-04-05 Keisuke Nishida <kxn30@po.cwru.edu>
604
605 * Makefile.am (ice9_sources): Add history.scm.
606 * history.scm: Create the module (value-history) at the beginning.
607
608 2001-03-29 Marius Vollmer <mvo@zagadka.ping.de>
609
610 * boot-9.scm (init-dynamic-module): Fix typo in call to
611 warn-autoload-deprecation. I feel silly.
612
613 2001-03-27 Marius Vollmer <mvo@zagadka.ping.de>
614
615 * r4rs.scm (call-with-values): New definition, defers to
616 @call-with-values.
617
618 2001-03-26 Marius Vollmer <mvo@zagadka.ping.de>
619
620 * boot-9.scm (warn-autoload-deprecation): New function.
621 (init-dynamic-module): Use it here to print warning. Only give
622 warning when a module has actually been found.
623
624 2001-03-25 Marius Vollmer <mvo@zagadka.ping.de>
625
626 * boot-9.scm (init-dynamic-module): Issue warning about
627 auto-loading of compiled code modules being deprecated.
628
629 * Makefile.am (ice9_sources): Added "time.scm".
630
631 2001-03-20 Keisuke Nishida <kxn30@po.cwru.edu>
632
633 * time.scm (time): Reimplemented as a procedure call.
634 (Thanks to Marius Vollmer)
635
636 2001-03-20 Keisuke Nishida <kxn30@po.cwru.edu>
637
638 * safe-r5rs.scm (list): Export.
639
640 2001-03-17 Keisuke Nishida <kxn30@po.cwru.edu>
641
642 * boot-9.scm (before-eval-hook, after-eval-hook,
643 before-print-hook, after-print-hook): New hooks.
644 (scm-style-repl): Call these hooks.
645
646 * history.scm: New file.
647
648 2001-03-17 Keisuke Nishida <kxn30@po.cwru.edu>
649
650 * time.scm: New file.
651
652 2001-03-17 Dirk Herrmann <D.Herrmann@tu-bs.de>
653
654 * oldprint.scm: Removed.
655
656 2001-03-12 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
657
658 * arrays.scm (make-array): Added quote in front of ().
659
660 2001-03-12 Keisuke Nishida <kxn30@po.cwru.edu>
661
662 * common-list.scm (count-if): New procedure.
663
664 2001-03-10 Neil Jerram <neil@ossau.uklinux.net>
665
666 * buffered-input.scm (make-buffered-input-port): New, more general
667 buffered input procedure. Does not assume that a newline
668 character should be interpolated between chunks of input returned
669 by the reader proc.
670 (make-line-buffered-input-port): Redefine in terms of
671 make-buffered-input-port.
672
673 2001-03-09 Keisuke Nishida <kxn30@po.cwru.edu>
674
675 * match.scm: Don't export defstruct. Use (unquote defstruct) instead.
676
677 2001-03-09 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
678
679 * Makefile.am (psyntax.pp): Added rule for producing psyntax.pp.
680
681 2001-03-09 Keisuke Nishida <kxn30@po.cwru.edu>
682
683 * match.scm: export defstruct.
684
685 2001-03-08 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
686
687 * psyntax.ss: Added FSF copyright notice. Added a notice of
688 changes in order to comply with paragraph 2a of the GPL. (Thanks
689 to Keith Wright.)
690
691 2001-03-07 Neil Jerram <neil@ossau.uklinux.net>
692
693 * buffered-input.scm (make-line-buffered-input-port): Don't set
694 the continuation flag for leading whitespace. Thanks to Dirk
695 Herrmann for the suggestion.
696
697 2001-03-05 Neil Jerram <neil@ossau.uklinux.net>
698
699 * optargs.scm (rest-arg->keyword-binding-list): Use "'()" instead
700 of "()".
701
702 * buffered-input.scm: New file, with guts of line buffered input
703 port implementation extracted from guile-readline/readline.scm.
704
705 2001-03-03 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
706
707 * stack-catch.scm: New file.
708
709 * Makefile.am (ice9_sources): Added stack-catch.scm.
710
711 2001-03-03 Marius Vollmer <mvo@zagadka.ping.de>
712
713 * boot-9.scm, rdelim.scm: Use "'()" instead of "()" in all places
714 where the empty list is meant.
715
716 2001-02-26 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
717
718 * boot-9.scm (save-stack): Use `primitive-eval' for stack
719 cutting. Makes backtraces work again! Also added a reference to
720 save-stack from the place in the repl where the primitive-eval
721 frame is invoked.
722
723 2001-02-25 Keisuke Nishida <kxn30@po.cwru.edu>
724
725 * match.scm: New file, including Andrew K. Wright's pattern matcher.
726 * Makefile.am (ice9_sources): Added match.scm.
727
728 2001-02-16 Marius Vollmer <mvo@zagadka.ping.de>
729
730 * boot-9.scm (eval-when, eval-case): Renamed `eval-when' to
731 `eval-case', everywhere.
732
733 2001-02-13 Marius Vollmer <mvo@zagadka.ping.de>
734
735 * boot-9.scm (define-public): Removed spurious call to
736 `interaction-evironment'.
737 (define-public, defmacro-public): Use `export' instead of explicit
738 module magic.
739 (eval-when): New macro.
740 (define-module, use-modules, use-syntax, export): Use it to
741 restrict the use of these forms to the top level.
742 (define-public, defmacro-public): Only export binding when on
743 top-level.
744 (process-define-module): Call `set-current-module' with the
745 defined module.
746 (define-module): Simply call `process-define-module' without any
747 fuss (but only on top-level).
748 (named-module-use!): New function.
749 (top-repl): Do not use `define-module'. Use equivalent low-level
750 means instead.
751
752 2001-02-11 Marius Vollmer <mvo@zagadka.ping.de>
753
754 * boot-9.scm (scm-style-repl): Use `primitive-eval' instead of
755 `eval'.
756 (define-public): Do not use `eval'.
757
758 2001-02-08 Marius Vollmer <marius.vollmer@uni-dortmund.de>
759
760 * and-let-star-compat.scm: Display the warning to the
761 `current-error-port'.
762
763 2001-02-04 Marius Vollmer <mvo@zagadka.ping.de>
764
765 Avoid the use of "*" in file names for the benefit of lesser
766 operating systems.
767
768 * and-let-star.scm, and-let*.scm: Renamed `and-let*.scm' to
769 `and-let-star.scm'. Updated module name as well.
770 * and-let-star-compat.scm: New file, installed as `and-let*.scm'.
771 * Makefile.am (ice9_sources): Replaced "and-let*.scm" with
772 "and-let-star.scm".
773 (install-data-local): Install "and-let-star-compat.scm" as
774 "and-let*.scm", ignoring errors.
775 (EXTRA_DIST): Distribute `and-let-star-compat.scm'.
776
777 2001-01-26 Dirk Herrmann <D.Herrmann@tu-bs.de>
778
779 This patch fixes a problem reported by Martin Grabmueller about
780 the impossibility to access readline's run-time options.
781
782 * boot-9.scm (define-option-interface): New macro. Allows to
783 conveniently define a group of option interface functions.
784
785 (readline-options readline-enable readline-disable,
786 readline-set!): Moved to guile-readline/readline.scm.
787
788 2001-01-24 Gary Houston <ghouston@arglist.com>
789
790 * boot-9.scm: don't import (ice-9 rdelim) here. it's done
791 in C for now.
792 * rdelim.scm: export the C primitives too.
793 * documentation.scm: use (ice-9 rdelim).
794
795 2001-01-21 Gary Houston <ghouston@arglist.com>
796
797 * rdelim.scm: new file implementing module (ice-9 rdelim).
798 * ice-9.scm (scm-line-incrementors read-line! read-delimited!
799 read-delimited read-line): moved to rdelim.scm.
800 scm-line-incrementors is not exported.
801 * boot-9.scm: import (ice-9 rdelim) for backwards compatibility,
802 for now.
803 * lineio.scm: use module (ice-9 rdelim).
804 * Makefile.am (ice9_sources): add rdelim.scm.
805
806 2000-12-29 Dirk Herrmann <D.Herrmann@tu-bs.de>
807
808 * boot-9.scm (root-module-closure, scm-module-closure): Remove
809 calls '(symbol-interned? #f s)'. Formerly, these calls were
810 basically no-ops, guaranteed to return #t if 's' was a symbol.
811 After the separation of symbols and bindings, a call to
812 '(symbol-interned? #f s)' will only return #t if there really is a
813 binding for 's' in the scm_symhash table. Thanks to Dale P. Smith
814 for providing a test case that helped finding this bug.
815
816 2000-12-13 Dirk Herrmann <D.Herrmann@tu-bs.de>
817
818 * session.scm (apropos): Completed the last patch, which did only
819 half the job. Thanks to Dale P. Smith.
820
821 2000-12-12 Dirk Herrmann <D.Herrmann@tu-bs.de>
822
823 * session.scm (apropos, apropos-fold): There are no weak bindings
824 any more.
825
826 2000-12-12 Dirk Herrmann <D.Herrmann@tu-bs.de>
827
828 * boot-9.scm (top-repl): Lookup 'use-emacs-interface in
829 the-root-module.
830
831 2000-12-07 Neil Jerram <neil@ossau.uklinux.net>
832
833 * emacs.scm (flush-whitespace): Fix spelling typo ("recieving").
834
835 2000-11-28 Dirk Herrmann <D.Herrmann@tu-bs.de>
836
837 * boot-9.scm (read-delimited), lineio.scm
838 (make-line-buffering-input-port), regex.scm (match:prefix,
839 match:suffix, match:substring, regexp-substitute/global), slib.scm
840 (slib-parent-dir), string-fun.scm (split-after-char,
841 split-before-char, split-discarding-char, split-after-char-last,
842 split-before-char-last, split-discarding-char-last,
843 split-before-predicate, split-after-predicate,
844 split-discarding-predicate, separate-fields-discarding-char,
845 separate-fields-after-char, separate-fields-before-char,
846 string-prefix-predicate, sans-surrounding-whitespace,
847 sans-trailing-whitespace, sans-leading-whitespace,
848 sans-final-newline): Use substring instead of
849 make-shared-substring.
850
851 2000-11-26 Gary Houston <ghouston@arglist.com>
852
853 * boot-9.scm: values?, get-values, values, call-with-values:
854 removed. values and call-with-values are now primitives and
855 the other two were only exported by accident. don't define
856 *values-rtd* record type or handle multiple values in
857 scm-style-repl.
858
859 2000-11-07 Gary Houston <ghouston@arglist.com>
860
861 * popen.scm (open-output-pipe): added docstrings for open-input-pipe
862 and open-output-pipe.
863
864 2000-11-06 Gary Houston <ghouston@arglist.com>
865
866 * popen.scm (open-process): bug fix: don't use
867 close-all-ports-except to close ports in the child process, since
868 it causes port buffers to be flushed. they may be flushed again
869 in the parent, causing duplicate output. use a more elaborate
870 method for setting up the child descriptors (thanks to David
871 Pirotte for the bug report).
872 standard file descriptors 0, 1, 2 in the child process
873 are now set up from current-input-port etc., where possible.
874
875 2000-10-10 Dirk Herrmann <D.Herrmann@tu-bs.de>
876
877 * syncase.scm (eval): string=? requires a string argument.
878 Thanks to Dale P. Smith for the patch.
879
880 2000-10-15 Neil Jerram <neil@ossau.uklinux.net>
881
882 * optargs.scm: Fix typos in commentary for bound? and lambda*.
883
884 2000-10-10 Dirk Herrmann <D.Herrmann@tu-bs.de>
885
886 * session.scm (apropos, apropos-fold): regexp-exec does not
887 accept symbol arguments any more. Thanks to Dale P. Smith for the
888 patch.
889
890 2000-09-30 Gary Houston <ghouston@arglist.com>
891
892 * posix.scm (setgrent): pass #t, not #f. thanks to
893 Jacques A. Vidrine.
894
895 2000-09-29 Neil Jerram <neil@ossau.uklinux.net>
896
897 * documentation.scm (find-documentation-in-file): Modified
898 according to changed format of guile-procedures.txt caused by my
899 snarfing/makeinfo changes in libguile.
900
901 * session.scm (help-doc): Improvements to (help) output: (i) a
902 friendlier Emacs-style introduction line; (ii) where the help arg
903 matches multiple documented entries, print an initial list of the
904 entries for which documentation is found, before printing the
905 actual documentation entries themselves.
906
907 2000-09-20 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
908
909 * boot-9.scm: Removed comment. (Thanks to Brad Knotwell.)
910
911 2000-09-12 Dirk Herrmann <D.Herrmann@tu-bs.de>
912
913 * syncase.scm (putprop): Use the high-level property interface.
914
915 2000-09-12 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
916
917 * psyntax.ss (build-lexical-var): Use gentemp instead of gensym;
918 Convert first argument to a string.
919
920 * calling.scm (excursion-function-syntax,
921 getter-and-setter-syntax,
922 delegating-getter-and-setter-syntax): Call gensym with string
923 argument. (Thanks to Dale P. Smith.)
924
925 * oldprint.scm (print-table-add!): Ditto.
926
927 * boot-9.scm (gentemp): Moved to symbols.c.
928
929 2000-08-27 Marius Vollmer <mvo@zagadka.ping.de>
930
931 * boot-9.scm (make-object-property): New function.
932
933 2000-08-26 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
934
935 * boot-9.scm (make-record-type): Use `string-append' instead of
936 `symbol-append'.
937 (symbol-append): Map `symbol->string' on
938 args.
939 (obarray-symbol-append, obarray-gensym): Simply removed. I don't
940 think I'll announce this in NEWS even. One of the functions never
941 even worked... /mdj.
942 (find-and-link-dynamic-module, keyword->symbol): Use
943 `symbol->string'.
944 (try-module-autoload, process-define-module): Rewrote using R5RS
945 semantics.
946
947 2000-08-24 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
948
949 * psyntax.ss (set!): Added generalized set! support to core syntax
950 form set!.
951
952 2000-08-19 Marius Vollmer <mvo@zagadka.ping.de>
953
954 * optargs.scm (#\&): Changed #:allow-other-keys-value to
955 #:allow-other-keys. Thanks to Bill Schottstaedt!
956
957 2000-08-17 Marius Vollmer <mvo@zagadka.ping.de>
958
959 * optargs.scm (#\&): Emit warning about `#&' being deprecated.
960
961 2000-08-16 Marius Vollmer <mvo@zagadka.ping.de>
962
963 * optargs.scm: Replaced `#&' reader syntax with keywords.
964
965 2000-08-14 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
966
967 * format.scm (format:obj->str): Made tail-recursive. (Thanks to
968 Matthias Köppe.)
969
970 2000-08-13 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
971
972 * psyntax.ss (top-level-eval-hook, local-eval-hook): Pass
973 `(interaction-environment)' as second arg to `eval'. This is
974 completely equivalent with the state before the change to eval of
975 2000-08-11, but we should extend psyntax.ss to be module aware.
976 (Thanks to Ian Bicking.)
977
978 * emacs.scm (emacs-symdoc): Parenthesis fix.
979
980 2000-08-11 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
981
982 * r5rs.scm (interaction-environment): Removed definition. (Is now
983 provided by libguile/modules.c.)
984
985 * safe-r5rs.scm (null-environment): Bugfix: Should include
986 syntactic bindings.
987
988 * boot-9.scm (record-constructor, record-accessor,
989 record-modifier, scm-style-repl): Add second arg to eval.
990 (read-hash-extend #\.): Ditto. (This is actually a bugfix!)
991 (eval-in-module): Redefined to be eval and deprecated.
992
993 * syncase.scm (eval): Add second arg both in definition and use.
994
995 * slib.scm (slib:eval): Use eval instead of eval-in-module.
996 (defmacro:eval): Eval in (interaction-environment).
997
998 * safe-r5rs.scm (eval): Removed definition.
999
1000 * emacs.scm (emacs-eval-request):
1001 (emacs-symdoc): (This procedure needs updating!)
1002
1003 2000-08-10 Mikael Djurfeldt <mdj@linnaeus.mit.edu>
1004
1005 * boot-9.scm: Added note about dependency in modules.h to
1006 definition of module-type.
1007
1008 * Makefile.am (ice9_sources): Added receive.scm, srfi-8.scm.
1009
1010 * receive.scm, srfi-8.scm: New files.
1011
1012 * boot-9.scm (scm-style-repl): Print multiple values on successive
1013 lines.
1014 (process-define-module): Bugfix: Make sure that exports are done
1015 *after* all used interfaces has been added.
1016
1017 2000-07-24 Marius Vollmer <mvo@zagadka.ping.de>
1018
1019 * common-list.scm (uniq): Made tail-recursive. Thanks to thi!
1020
1021 2000-07-13 Dirk Herrmann <D.Herrmann@tu-bs.de>
1022
1023 * boot-9.scm (expt): In case of negative integer exponents return
1024 an exact result if the input paramters were exact. Thanks to
1025 Mikael for the suggestion.
1026
1027 2000-07-12 Dirk Herrmann <D.Herrmann@tu-bs.de>
1028
1029 * boot-9.scm (expt): Make sure that integer-expt is only called
1030 if the exponent is a non-negative integer.
1031
1032 2000-07-01 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1033
1034 * boot-9.scm (process-define-module): Bugfix: Only check the CDR
1035 for export args.
1036
1037 2000-06-27 Dirk Herrmann <D.Herrmann@tu-bs.de>
1038
1039 * popen.scm: gc-thunk is deprecated. Use after-gc-hook instead.
1040
1041 2000-06-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
1042
1043 * common-list.scm (intersection, set-difference, remove-if,
1044 remove-if-not): Made tail-recursive. Thanks to William Webber
1045 for the hint.
1046
1047 (delete-if!, delete-if-not!): Renamed parameter from `list' to
1048 `l' in order to avoid confusion. Note: These functions are not
1049 tail recursive yet.
1050
1051 2000-06-21 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1052
1053 * boot-9.scm: Turned `the-module', `*top-level-lookup-closure*',
1054 and `scm:eval-transformer' into fluids.
1055
1056 * boot-9.scm (purify-module!, module-export!): New procedures.
1057 (export): Rewritten using `module-export!'.
1058 (process-define-module): New define-module options: pure, export.
1059 See NEWS.
1060 (scm-style-repl): Added optional module argument.
1061
1062 * null.scm, r5rs.scm, safe-r5rs.scm, safe.scm: New modules.
1063
1064 2000-06-20 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1065
1066 * session.scm (make-fold-modules): Detect circular references in
1067 module graph. (Thanks to Matthias Köppe.)
1068
1069 2000-06-20 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1070
1071 * session.scm: Use module (ice-9 regex).
1072 (help): Regexp-quote a name given as a symbol.
1073
1074 2000-06-16 Dirk Herrmann <D.Herrmann@tu-bs.de>
1075
1076 * common-list.scm (list*): Removed, since this function is
1077 implemented as a primitive in libguile/list.c.
1078
1079 2000-06-12 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1080
1081 * session.scm (help): Warn user if 'regex isn't provided.
1082
1083 * Makefile.am (ice9_sources): Removed getopt-gnu-style.scm.
1084
1085 * getopt-gnu-style.scm: Removed deprecated module.
1086
1087 2000-06-11 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1088
1089 * boot-9.scm (make-autoload-interface): Set init value for uses to
1090 '() instead of #f.
1091 (make-modules-in): Name modules with their real (= full) names.
1092 (the-root-module, the-scm-module): Named `(guile)' instead of
1093 `the-root-module'.
1094 (the-scm-module): Set kind to 'interface.
1095
1096 * Makefile.am (ice9_sources): Replaced doc.scm with
1097 documentation.scm.
1098
1099 * session.scm (ice-9): Use module (ice-9 documentation).
1100 (name): Use the name property if everything else fails.
1101 (apropos-fold): New procedure.
1102 (apropos-internal): Re-implement in terms of `apropos-fold'.
1103 (help): Rewritten.
1104
1105 * doc.scm: Removed module (ice-9 doc).
1106
1107 * documentation.scm: New module (ice-9 documentation).
1108
1109 2000-06-08 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1110
1111 * doc.scm (documentation-files): Renamed from `doc-files'.
1112 (write-all): Removed.
1113 (find-documentation): Renamed from `documentation'. Return
1114 documentation string instead of printing it. Not exported.
1115
1116 Tue Jun 6 09:21:28 2000 Greg J. Badros <gregb@go2net.com>
1117
1118 * session.scm: Update references to `proc-doc' to be
1119 `proc-documentation'
1120
1121 * doc.scm: Cleaned up a great deal. Put variables at the top of
1122 the file, eliminated `object-documentation' that was broken
1123 (referencing Scwm), drop `help' as session.scm has a better
1124 supported version of that procedure. Rename `proc-doc' to
1125 `proc-documentation' -- `procedure-documentation' is a primitive
1126 getter function, so I use the shorter name for this more useful
1127 function. (Alternatively, we could rename the primitive
1128 getter...)
1129
1130 2000-06-05 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1131
1132 * boot-9.scm (error-catching-loop): Inform about debugger on error.
1133
1134 2000-06-04 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1135
1136 * boot-9.scm (scm-module-closure): New procedure: Was previously
1137 anonymous. Now needed in modules.c.
1138 (make-module): Use `standard-eval-closure' to create the eval
1139 closure.
1140
1141 2000-05-14 Gary Houston <ghouston@arglist.com>
1142
1143 * boot-9.scm (load-user-init): rewritten. first work out the home
1144 directory and then try to open the file (previously it could try
1145 to open a file in more than one place). catch exceptions when
1146 trying to get a directory from the user database. don't check
1147 that ~/.guile is not a directory before trying to load it (a lack
1148 of ~/.guile is not a crime, but if the file is not valid for any
1149 reason then primitive-load will raise an error).
1150
1151 2000-05-11 Dirk Herrmann <D.Herrmann@tu-bs.de>
1152
1153 * boot-9.scm (abs): Don't set to magnitude. abs now does not
1154 accept complex numbers as parameter.
1155
1156 2000-05-09 Marius Vollmer <mvo@zagadka.ping.de>
1157
1158 * common-list.scm (delete-if-not!): Bug fix of bug fix: change
1159 label of named let to `delete-if-not'. Sorry.
1160
1161 2000-05-08 Marius Vollmer <mvo@zagadka.ping.de>
1162
1163 * common-list.scm (doc fixes): Talk about `true values' instead of
1164 `#t' when a function treats all non-#f valuers the same.
1165 (remove-if-not): Bug fix: call remove-if-not
1166 instead of remove-if when iterating.
1167 (delete-if-not!): Bug fix: call delete-if-not! instead of
1168 delete-if! when iterating.
1169
1170 2000-04-16 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1171
1172 * r4rs.scm (close-input-port, close-output-port): Removed.
1173
1174 2000-04-13 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1175
1176 * session.scm (help): New macro. Prints helpful information.
1177
1178 2000-04-10 Gary Houston <ghouston@arglist.com>
1179
1180 * popen.scm (open-process): after forking, close all ports except
1181 the end of the pipe to the parent. otherwise move->fdes and
1182 the exec'd program and the exit handlers can interfere with file
1183 descriptors still in use in parent ports.
1184
1185 2000-04-09 Gary Houston <ghouston@arglist.com>
1186
1187 * popen.scm (close-process-quietly): new procedure. use it from
1188 reap-pipes to avoid errors or hanging during background cleanup.
1189
1190 2000-04-04 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1191
1192 * format.scm (format:obj->str): Handle circular references. Also,
1193 print improper lists with (x y . z) syntax rather than as
1194 individual pairs. (This code should probably be integrated into C
1195 level facilities. It is currently terribly slow.)
1196
1197 2000-04-03 Michael Livshin <mlivshin@bigfoot.com>
1198
1199 * streams.scm (stream-fold, stream-for-each): don't use named let,
1200 because it prevents the gc from junking the stream argument.
1201
1202 Thu Mar 9 08:05:08 2000 Greg J. Badros <gjb@cs.washington.edu>
1203
1204 * slib.scm: Back-out change to software-type -- renamed
1205 slib:software-type to software-type, and leave it non-public.
1206
1207 Thu Mar 2 12:20:52 2000 Greg J. Badros <gjb@cs.washington.edu>
1208
1209 * boot-9.scm: Drop unused definition of sfx function -- thanks
1210 Dirk Hermann!
1211
1212 Wed Mar 1 12:21:02 2000 Greg J. Badros <gjb@cs.washington.edu>
1213
1214 * streams.scm: Doc patch from Richard Kim, using MIT Scheme as
1215 source of the numerous very short changes.
1216
1217 Sun Feb 13 18:03:19 2000 Greg J. Badros <gjb@cs.washington.edu>
1218
1219 * slib.scm: Rename software-type to slib:software-type and make it
1220 public.
1221
1222 * r4rs.scm: Added documentation; largely cut and pasted from R4RS
1223 info pages.
1224
1225 Sun Feb 13 17:49:29 2000 Greg J. Badros <gjb@cs.washington.edu>
1226
1227 * common-list.scm: Added documentation; largely cut and pasted
1228 from slib docs.
1229
1230 2000-02-11 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1231
1232 * format.scm (format): Reintroduce (define format format:format)
1233 so that the binding in the public interface of the module will be OK.
1234
1235 2000-01-30 Gary Houston <ghouston@arglist.com>
1236
1237 * boot-9.scm (find-and-link-dynamic-module): pass strings, not symbols,
1238 to string-append.
1239
1240 2000-01-29 Gary Houston <ghouston@arglist.com>
1241
1242 * expect.scm (expect): don't call char-ready? before expect-select,
1243 since select now checks port buffers itself. don't bother to check
1244 the time first either, since expect-select does it.
1245
1246 Thu Jan 20 12:57:36 2000 Greg J. Badros <gjb@cs.washington.edu>
1247
1248 * format.scm: Use (variable-set! (builtin-variable 'format)) to
1249 re-define format to be format:format (instead of just define,
1250 which interacts poorly with the module system). Thanks to Shuji
1251 Narazaki for this change.
1252
1253 Tue Jan 11 10:49:22 2000 Greg J. Badros <gjb@cs.washington.edu>
1254
1255 * boot-9.scm expect.scm, syncase.scm: Switch to new style
1256 `simple-format' message strings: substitute ~A for %s, and ~S for
1257 %S.
1258
1259 * boot-9.scm: Added (define format simple-format) to expose that
1260 primitive via the simpler name until format.scm is loaded.
1261
1262 2000-01-09 Marius Vollmer <mvo@zagadka.ping.de>
1263
1264 * boot-9.scm (try-using-libtool-name): Do not bother to look
1265 inside libtool ".la" file, dynamic-link does this for us now.
1266
1267 1999-12-15 Gary Houston <ghouston@freewire.co.uk>
1268
1269 * slib.scm (library-vicinity, home-vicinity,
1270 scheme-implementation-type, scheme-implemenation-version):
1271 use define-public to export from the module.
1272
1273 Wed Dec 15 08:32:09 1999 Greg J. Badros <gjb@cs.washington.edu>
1274
1275 * doc.scm: Use `%library-dir' and the other system directories,
1276 not the quickly defuncted `library-dir' that I added before
1277 realizing the former existed. Thanks Brad Knotwell!
1278
1279 Sun Dec 12 19:18:52 1999 Greg J. Badros <gjb@cs.washington.edu>
1280
1281 * Makefile.am, doc.scm: Added doc.scm.
1282
1283 1999-12-12 18:54:06 1999 Greg J. Badros <gjb@cs.washington.edu>
1284
1285 * popen.scm, slib.scm: Added some docstrings for procedures that
1286 were primitives that I encountered in posix.texi.
1287
1288 1999-11-19 Gary Houston <ghouston@freewire.co.uk>
1289
1290 * Makefile.am (ice9_sources): add arrays.scm.
1291
1292 * boot-9.scm: load arrays.scm if 'array is provided.
1293
1294 * arrays.scm: new file with stuff from boot-9.scm.
1295
1296 1999-11-18 Gary Houston <ghouston@freewire.co.uk>
1297
1298 * boot-9.scm (read-hash-extend to set up arrays): add 'l' for
1299 long_long uniform vectors.
1300
1301 1999-11-17 Gary Houston <ghouston@freewire.co.uk>
1302
1303 * networking.scm (sethostent, setnetent, setprotoent, setservent):
1304 take an optional argument STAYOPEN. default is #f.
1305
1306 1999-10-05 Jim Blandy <jimb@savonarola.red-bean.com>
1307
1308 * Makefile.in: Deleted from CVS repository. Run the autogen.sh
1309 script to create generated files like this one.
1310
1311 1999-09-23 Gary Houston <ghouston@freewire.co.uk>
1312
1313 * boot-9.scm (load-user-init): check that the posix feature is
1314 available before using getpw and getuid.
1315 (top-repl): don't install handlers for SIGINT etc., without posix.
1316 (file-is-directory?): use 'posix instead of i/o-extensions to
1317 check for stat.
1318 (load-user-init): use file-exists? and file-is-directory? to
1319 check for .guile, instead of stat.
1320 (file-is-directory?): don't display the file name if posix not
1321 available.
1322 (feature?): I guess this is deprecated. redefined using "provided?"
1323 and changed users in boot-9.scm to "provided?".
1324 Conditionally load posix.scm and networking.scm.
1325
1326 posix.scm, networking.scm: new files. Move definitions from
1327 boot-9.scm if they are only useful with posix/networking available.
1328
1329 * Makefile.am (ice9_sources): add posix.scm, networking.scm.
1330
1331 1999-09-17 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1332
1333 * debugger.scm (read-and-dispatch-commands): Handle other throws
1334 than 'exit-debugger.
1335
1336 * boot-9.scm (before-signal-stack): New fluid.
1337 (top-repl): Set before-signal-stack in the signal handler.
1338
1339 * debugger.scm (eval-handler): Handle unhandled exceptions.
1340
1341 1999-09-16 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1342
1343 * debugger.scm ("p"): New alias for "evaluate";
1344 Mark module with :no-backtrace.
1345 ("position"): New command.
1346 (source-position, display-position): New procedures.
1347 (display-source): Display position of expression, if available.
1348 (catch-user-errors): Return #f on error. (Commands are expected
1349 to return a valid state.)
1350 (read-and-dispatch-command): Bugfix: Return old state on error.
1351
1352 1999-09-16 Jim Blandy <jimb@savonarola.red-bean.com>
1353
1354 * regex.scm (regexp-substitute/global): Handle the end of the
1355 match list and an empty match list identically. (Thanks to Greg
1356 Badros.)
1357
1358 1999-09-15 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1359
1360 * debugger.scm ("evaluate"): Replaced `write-line' with calls to
1361 `write' and `newline' since write-line doesn't write but displays.
1362
1363 1999-09-12 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1364
1365 * debugger.scm ("evaluate"): Newline after no env announcement.
1366
1367 * debug.scm, emacs.scm: Updated copyright notices.
1368
1369 * boot-9.scm (make-autoload-interface): Bugfix.
1370 (top-repl): Autoload debugger.
1371
1372 * debugger.scm ("backtrace"): Don't pass length param to
1373 display-backtrace if it wasn't explicitly given by the user.
1374 (write-frame-long/application): Also print corresponding source
1375 expression.
1376 ("evaluate"): Evaluate in local environment frame, if existent;
1377 Handle errors.
1378
1379 1999-09-11 Jim Blandy <jimb@savonarola.red-bean.com>
1380
1381 * format.scm (format:format-work): Use #\tab and #\page instead of
1382 slib:form-feed and slib:tab. (Thanks to Ceri Storey.)
1383
1384 * format.scm (format:abort): Call error, not slib:error.
1385
1386 1999-09-11 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1387
1388 * boot-9.scm (using-readline?): New procedure: Returns #t if
1389 readline is used by the repl run by this thread.
1390 (handle-system-error): Print "Backtrace:" before backtrace since
1391 this is no longer done by display-backtrace.
1392
1393 * debug.scm (frame-number->index): Optionally take stack as
1394 argument.
1395
1396 * debugger.scm: Use the frame number abstraction which allows for
1397 both forward and backward views of the stack
1398 (write-frame-index-short, write-frame-index-long):
1399 Use selector `frame-number';
1400 (select-frame-absolute): Use frame-number->index.
1401 ("backtrace"): Use builtin backtrace printing.
1402 Use (ice-9 debug).
1403 Use readline conditionally.
1404
1405 1999-09-11 Jim Blandy <jimb@savonarola.red-bean.com>
1406
1407 * regex.scm (fold-matches, list-matches): New functions.
1408 (regexp-substitute/global): Rewritten again in terms of
1409 list-matches, to get null match behavior correct.
1410
1411 * regex.scm (regexp-substitute/global): Rewrite so that 'post at
1412 the end of the item list actually causes a tail call. (Thanks to
1413 Jan Nieuwenhuizen.)
1414
1415 1999-09-11 Marius Vollmer <mvo@zagadka.ping.de>
1416
1417 * readline.scm: Moved to ../guile-readline.
1418
1419 * boot-9.scm (top-repl): Removed code for activating readline.
1420
1421 * Makefile.am: Removed mention of readline.scm.
1422
1423 * Makefile.in: Regenerated.
1424
1425 1999-09-11 Jim Blandy <jimb@savonarola.red-bean.com>
1426
1427 Delete the test which compares the configuration date of libguile
1428 with the configuration date of ice-9. This test yields too many
1429 false positives to be helpful. For example, if you build Guile
1430 for several architectures but have them all share a "share"
1431 directory (which is supposed to work), then all but one
1432 architecture's Guile will complain that the configuration dates
1433 don't match. Which is true, but indicates nothing wrong.
1434 * boot-9.scm: Delete code which compares ice-9-config-stamp with
1435 libguile-config-stamp.
1436 * version.scm.in: Delete.
1437 * Makefile.am (ice9_generated): Delete.
1438 (subpkgdata_DATA): Remove ice9_generated.
1439 (EXTRA_DIST): Remove version.scm.in.
1440 * Makefile.in: Regenerate.
1441
1442 1999-09-11 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1443
1444 * debugger.scm: New file: Initial version of the Guile debugger
1445 written by Chris Hanson. (The debugger isn't finished, but is
1446 included in Guile anyway since it is already quite useful.)
1447
1448 * boot-9.scm (top-repl): Use (ice-9 debug) (ice-9 debugger) (ice-9
1449 session) (ice-9 threads) (ice-9 regex) from guile-user only if
1450 top-repl is called. This makes startup time for scripts 30% of
1451 what it was before... Removed redundant code for loading of
1452 readline.
1453
1454 * Makefile.am (ice9_sources): Added debugger.scm.
1455
1456 1999-08-29 Keisuke Nishida <kxn30@po.cwru.edu>
1457
1458 * boot-9.scm (try-module-autoload): Use %search-load-path.
1459
1460 1999-08-24 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1461
1462 * boot-9.scm: Removed old style hooks.
1463 (inherit-print-state): Rwwritten to use port-with-print-state.
1464
1465 1999-08-20 James Blandy <jimb@mule.m17n.org>
1466
1467 Remove support for the #/ path list syntax entirely.
1468 * boot-9.scm (read-path-list-notation,
1469 read-path-list-notation-warning): Deleted.
1470 Don't register read-path-list-notation-warning as a reader for
1471 objects starting with '#/'.
1472
1473 1999-08-05 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
1474
1475 GOOPS needs the observer protocol specified for the new module
1476 system. Here's a simple version for the old module system:
1477 * boot-9.scm (module-observers, module-weak-observers,
1478 module-observer-id, set-module-observers!,
1479 set-module-observer-id!): New accessors.
1480 (module-type): Added slots `observers', `weak-observers' and
1481 `observer-id'.
1482 (module-observe, module-observe-weak, module-unobserve,
1483 module-modified): New procedures.
1484 (module-make-local-var!, module-add!, module-remove!,
1485 module-clear!, module-define!, module-use!): Call module-modified.
1486
1487 1999-07-29 Marius Vollmer <mvo@zagadka.ping.de>
1488
1489 * boot-9.scm (error-catching-loop): Correct non-RnRS usage of internal
1490 defines.
1491
1492 1999-07-19 Jim Blandy <jimb@savonarola.red-bean.com>
1493
1494 * streams.scm: New module, contributed by Michael Livshin.
1495 * Makefile.am (ice9_sources): List it.
1496 * Makefile.in: Regenerated.
1497
1498 * boot-9.scm (read-delimited!): Put the terminator in the correct
1499 position.
1500
1501 1999-06-29 Mikael Djurfeldt <mdj@mdj-pc.nada.kth.se>
1502
1503 * readline.scm: Bugfix: Avoid getting the continued-lines prompt
1504 at multiple calls to read.
1505 (promtp2): Variable for continued-lines prompt.
1506 (make-readline-port): Use prompt2.
1507 (set-readline-prompt!): New optional arg which sets
1508 continued-lines prompt.
1509
1510 * boot-9.scm (top-repl): Set/clear readline prompts before/after
1511 reading expressions.
1512
1513 1999-06-18 Jim Blandy <jimb@savonarola.red-bean.com>
1514
1515 * ls.scm (ls, lls): Handle no arguments as meaning to look in
1516 `(current-module)'. (Patch from Thien-Thi Nguyen.)
1517
1518 1999-06-14 Jim Blandy <jimb@savonarola.red-bean.com>
1519
1520 * string-fun.scm (split-before-predicate, split-after-predicate,
1521 split-discarding-predicate): Make these public. (Thanks to
1522 Thien-Thi Nguyen.)
1523
1524 1999-06-13 Gary Houston <ghouston@easynet.co.uk>
1525
1526 * more changes to expect.scm, to avoid the one-character lookhead
1527 that was introduced to fix the $ problem:
1528
1529 * expect.scm (expect): call the match proc an extra time at end
1530 of file and set the eof? argument appropriately. call
1531 expect-eof-proc only if the last call didn't match.
1532 * expect.scm (expect-strings): change port to eof? in match proc.
1533 * expect.scm (expect-regexec): take an eof indicator as an argument
1534 instead of a port.
1535
1536 1999-06-09 Jim Blandy <jimb@savonarola.red-bean.com>
1537
1538 * Makefile.am (ice9_sources): Add popen.scm to list.
1539 * Makefile.in: Regenerated.
1540
1541 Fixes for expect from Gary Houston <ghouston@easynet.co.uk>:
1542
1543 * expect.scm (expect-regexec): define 'eof-next?'. I don't
1544 know why it was missing. also don't peek for end of lines
1545 unless expect-strings-exec-flags contains regexp/noteol.
1546 (expect-strings-exec-flags): initialise to regexp/noteol.
1547
1548 Gary Houston's open-buffer port patches:
1549
1550 1999-04-01 Gary Houston <ghouston@easynet.co.uk>
1551
1552 * popen.scm: applied fixes from Greg Harvey. use a guardian
1553 and a gc-thunk so that cleanup is done if a pipe is garbage
1554 collected or closed with close-port. use a weak hash-table instead of
1555 an alist.
1556
1557 1999-03-20 Gary Houston <ghouston@easynet.co.uk>
1558
1559 * expect.scm (expect): call the match proc with the port instead.
1560 (expect-strings): use peek-char to get the next char. this has
1561 the advantage of getting the handling of $ "correct", but the
1562 disadvantage of needing to get (and maybe block for) an extra character
1563 from the port when it may not be needed. hence:
1564 (expect-strings-exec-flags): new variable/parameter, supplies
1565 flags for regexp-exec. if this includes regexp/noteol, then
1566 automatic regexp/noteol handling (requiring an extra peeked char)
1567 is enabled. default is regexp/noteol.
1568 (expect-strings-compile-flags): new variable/parameter, supplies
1569 flags for make-regexp. default is regexp/newline.
1570
1571 1999-03-15 Gary Houston <ghouston@easynet.co.uk>
1572
1573 * expect.scm (expect): call the match proc with an extra char,
1574 peeked from the stream.
1575 (expect-strings): build a match proc which takes the extra char.
1576 (expect-regexec): take an extra arg "eof-next?" and use it
1577 to decide whether the regexp/noteol flag should be added.
1578
1579 1999-02-26 Gary Houston <ghouston@easynet.co.uk>
1580
1581 * boot-9.scm (top-repl): don't flush all ports at exit.
1582 (error-catching-loop): likewise.
1583
1584 1998-12-23 Gary Houston <ghouston@easynet.co.uk>
1585
1586 * boot-9.scm (scm-style-repl): -read: don't call
1587 consume-trailing-whitespace if val is eof object. Allows
1588 exiting repl with single control-D.
1589
1590 1998-12-06 Gary Houston <ghouston@easynet.co.uk>
1591
1592 * boot-9.scm (error-catching-loop): don't force output within
1593 error catching loop after quit received.
1594 (top-repl): flush all ports when the repl terminates.
1595
1596 * boot-9.scm (error-catching-loop): flush all ports before
1597 primitive exit if non-interactive.
1598 force-output on current-error-port if interactive.
1599
1600 * boot-9.scm (reopen-file): deleted.
1601 * popen.scm (open-output-pipe, open-input-pipe): moved from
1602 boot-9.scm.
1603 * popen.scm: new file.
1604
1605 1999-06-04 Dirk Herrmann <D.Herrmann@tu-bs.de>
1606
1607 * boot-9.scm (iota): replaced by a tail recursive version.
1608 (reverse-iota): removed.
1609
1610 1999-06-03 Mikael Djurfeldt <mdj@mdj-pc.nada.kth.se>
1611
1612 * optargs.scm (lambda*): Bugfix: Replaced ARGLIST -->
1613 non-optional-args. (Thanks to David Lutterkort.)
1614
1615 1999-05-09 Jim Blandy <jimb@savonarola.red-bean.com>
1616
1617 * string-case.scm: Removed; functions moved to libguile/strop.c
1618 (which could be dynamically linked in the future anyway).
1619 * Makefile.am (ice9_sources): Don't list string-case.scm.
1620 * Makefile.in: Regenerated.
1621 * format.scm: Don't bother importing (ice-9 string-case).
1622
1623 1999-05-02 Jim Blandy <jimb@savonarola.red-bean.com>
1624
1625 * boot-9.scm (provided?): New function.
1626
1627 * Makefile.am: Add string-case.scm and format.scm to ice9_sources.
1628 * Makefile.in: Regenerated.
1629
1630 * string-case.scm: New file, brought in from SLIB, and adapted to
1631 Guile's module system.
1632
1633 * format.scm: New file, brought in from SLIB, with the following
1634 changes:
1635 (format:format): If the first argument is the format string, stick
1636 a #f on the front of it, so it is now a valid CL format argument
1637 list. This is easier than changing everyplace else (like the
1638 error formatter) that expects it to be in CL form. The other
1639 clause which explicitly tests for this case is now dead code.
1640 (format:format-work): Allow `@' and `:' in either order, as per
1641 modern CL behavior.
1642 (format:num->cardinal): Don't assume that an elseless if returns
1643 '() when the condition is false.
1644
1645 1999-04-17 Jim Blandy <jimb@savonarola.red-bean.com>
1646
1647 * Makefile.in: Regenerated.
1648
1649 1999-04-08 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1650
1651 * boot-9.scm: Provide 'values.
1652
1653 1999-03-21 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
1654
1655 * boot-9.scm (process-define-module, use-syntax): Bugfix:
1656 :use-syntax should add syntax to using module, not current module.
1657 (internal-use-syntax): Removed.
1658
1659 1999-03-21 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1660
1661 * session.scm (apropos-internal): Modified to comply with new
1662 argument order for hash-fold.
1663
1664 1999-03-19 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
1665
1666 * boot-9.scm (try-load-module): New procedure. Broken out from
1667 resolve-module.
1668 (resolve-module): Bugfix: Make it possible for a module at a
1669 deeper level (x y z) to depend on a module on a higher (x y).
1670
1671 This also has the desired side-effect that multiple attempts to
1672 load a module (e.g. with `use-modules') work until source is
1673 actually found for the module (e.g. because the correct catalog
1674 has been added to the load path).
1675
1676 Use try-load-module.
1677
1678 1999-03-18 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1679
1680 * session.scm (system-module): New procedure. Used to switch a
1681 module between system and user state.
1682
1683 1999-03-16 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1684
1685 * session.scm (apropos-internal): Rewritten using hash-fold.
1686
1687 * emacs.scm, session.scm, slib.scm): Added :no-backtrace in module
1688 definition.
1689
1690 1999-03-14 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
1691
1692 * boot-9.scm (make-record-type): Use `set-struct-vtable-name!' to
1693 associate a name to the record type descriptor so that the object
1694 system can create a wrapper class for it.
1695
1696 1999-03-12 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1697
1698 Improvement of backtraces: Introduces a new stack narrowing
1699 specifier, #t, for the inner cut. If the inner cut is specified
1700 by #t, `make-stack' will throw away inner stack frames (most
1701 recent calls on call chain) up to but excluding the first user
1702 stack frame encountered.
1703
1704 This specifier is now used in `save-stack' so that the call
1705 `(save-stack)' will get the new behaviour. [It is recommended that
1706 any error reporting functions written by the user have this call
1707 on the outermost expression level (i.e. as a member of the lambda
1708 list).]
1709
1710 Modules are partitioned into "user" and "system" modules. [I know
1711 that some names used here are silly, but I don't have more time to
1712 spend on a better solution, especially considering that the module
1713 system will be replaced. But if people have better ideas, then
1714 please tell me!]
1715
1716 System modules are created by adding :no-backtrace among the
1717 define-module switches:
1718
1719 (define-module (foo)
1720 :no-backtrace)
1721
1722 Modules which doesn't have the :no-backtrace specifier are user
1723 modules.
1724
1725 A stack frame is classified as a user frame if it has source code
1726 associated with it and if this source code can be proven to come
1727 from a user module. If it can be proven to come from a system
1728 module it is a system frame.
1729
1730 Frames which can't be classified, e.g. application frames, are cut
1731 away if they occur between system frames, but are left on the
1732 stack if they occur between the last system frame and the first
1733 user frame encountered. (Note that the first user frame
1734 encountered is the last user code being evaluated!)
1735
1736 In some cases the system part of the call chain is introduced by
1737 frames which should but can't be proven to be system frames. The
1738 following workaround has been implemented: The cutting proceeds
1739 over application frames where the operator is marked by the
1740 `system-procedure' property. (This has been used to cut away
1741 generic function dispatch code in the object system.)
1742
1743 * boot-9.scm (set-system-module!): New procedure: Set system/user
1744 status of a module.;
1745 Mark `the-root-module' and `the-scm-module' as system modules.
1746 (process-define-module): Add new keyword :no-backtrace.
1747
1748 * boot-9.scm (environment-module): Bugfixed.
1749 (set-module-eval-closure!): Add a pointer back from the eval
1750 closure to the module.
1751
1752 * emacs.scm (emacs-load): Reset port filename after transfer.
1753
1754 1999-03-03 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1755
1756 * slib.scm (make-random-state): Added for compatibility.
1757
1758 1999-02-16 Maciej Stachowiak <mstachow@alum.mit.edu>
1759
1760 * optargs.scm (lambda*): Handle empty argument lists properly.
1761
1762 1999-02-15 Jim Blandy <jimb@savonarola.red-bean.com>
1763
1764 Fix from Russ McManus:
1765 * getopt-long.scm (parse-option-spec): Store 'optional as the
1766 value-required? field for options that take optional values.
1767 (process-short-option): Grab a value for the option when it takes
1768 either an optional or required value.
1769
1770 1999-02-12 Jim Blandy <jimb@savonarola.red-bean.com>
1771
1772 * getopt-long.scm: Remove debugging calls to `pk'.
1773
1774 * getopt-long.scm: Return list of ordinary arguments as the value
1775 of the '() key, not `rest'.
1776
1777 A new argument-processing package from Russ McManus.
1778 * getopt-long.scm: New file.
1779 * Makefile.am (ice9_sources): Added getopt-long.scm.
1780 * Makefile.in: Regenerated.
1781
1782 1999-02-09 Maciej Stachowiak <mstachow@alum.mit.edu>
1783
1784 * optargs.scm: New file.
1785 * Makefile.am (ice9_sources): Add optargs.scm here. Makefile.in
1786 not regenerated because I don't have the right version of Automake.
1787
1788 1999-02-06 Jim Blandy <jimb@zwingli.cygnus.com>
1789
1790 * and-let*.scm: New file, from Michael Livshin.
1791 * Makefile.am (ice9_sources): Add and-let* here.
1792 * Makefile.in: Regenerated.
1793
1794 1999-01-11 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1795
1796 * slib.scm (install-require-module): Fixed the kludge which loads
1797 the slib catalog: Doesn't anylonger assume that the feature tested
1798 for isn't loaded.
1799
1800 1998-12-14 Jim Blandy <jimb@zwingli.cygnus.com>
1801
1802 * Makefile.in: Regenerated.
1803
1804 1998-12-14 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1805
1806 * boot-9.scm (process-define-module): Reverted the change of
1807 1998-11-23 which caused loading of object code if :use-module was
1808 applied to the module itself.
1809
1810 1998-12-11 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
1811
1812 * Makefile.am: Removed setf.scm.
1813
1814 * setf.scm: Removed. 1. It was buggy. 2. It was unschemey.
1815 (These shortcomings were my fault.)
1816
1817 1998-12-10 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1818
1819 * boot-9.scm (environment-module): New procedure.
1820
1821 1998-12-07 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
1822
1823 * Makefile.am: Added setf.scm.
1824
1825 1998-12-05 Christian Lynbech <chl@tbit.dk>
1826
1827 * setf.scm: New file. Adds the new forms `setf!' and `setter'
1828 which implements generalized references a la Common LISP.
1829
1830 1998-12-02 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
1831
1832 * boot-9.scm (process-define-module): Added new specifier
1833 :autoload MODULENAME BINDINGS to the define-module form.
1834 The autoload specifier tells the module system to load the module
1835 MODULENAME at the first occasion that any variable with its name
1836 among BINDINGS is referenced.
1837 (make-autoload-interface): New procedure: Constructs a stand-in
1838 for the public interface for the module to be autoloaded.
1839
1840 1998-12-01 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1841
1842 * boot-9.scm (*suppress-old-style-hook-warning*): Set this to #t
1843 if you don't want the old style hook warnings.
1844
1845 1998-12-01 Christian Lynbech <chl@tbit.dk>
1846
1847 * boot-9.scm (try-using-libtool-name): Fix check on dlname to make
1848 sure that it isn't empty, as it is when we are only buidling
1849 static libraries.
1850
1851 1998-11-27 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1852
1853 * session.scm (arity): New procedure.
1854
1855 1998-11-26 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1856
1857 * boot-9.scm: Use run-hook instead of run-hooks everywhere.
1858
1859 1998-11-26 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
1860
1861 * boot-9.scm (run-hooks, add-hook!, remove-hook!): Added temporary
1862 code for backward compatibility until people have had time to
1863 adapt to the new hooks.
1864
1865 1998-11-23 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
1866
1867 * boot-9.scm (beautify-user-module!): Beautify also if public
1868 interface is set to the module itself. In this way we can use
1869 beautify-user-module! to beautify a module prepared for object
1870 code.
1871 (process-define-module): Special case: Try to load object code as
1872 well if a module does :use-module on itself.
1873
1874 * boot-9.scm: Bugfix: Since boot-9.scm is now loaded from
1875 invoke_main_func, we can no longer be sure that all modules have
1876 been registered when boot-9.scm is loaded.
1877 (register-modules): New function: Register and tag modules
1878 registered by scm_register_module_xxx since last call to this
1879 function. Modules are tagged with the dynamic object passed as
1880 argument. (Already linked modules should be tagged with #f.)
1881 (init-dynamic-module, link-dynamic-module): Call register-modules
1882 first to register linked modules.
1883
1884 * boot-9.scm (init-dynamic-module): Remove module from
1885 registered-modules as soon as possible in case we are recursively
1886 invoked; Set public interface before doing the dynamic-call.
1887
1888 * boot-9.scm (map-in-order): Removed (replaced by scm_serial_map).
1889 (abort-hook, before-error-hook, after-error-hook,
1890 before-backtrace-hook, after-backtrace-hook, before-read-hook,
1891 after-read-hook, exit-hook): Make hooks with `make-hook'.
1892
1893 * boot-9.scm: Make hooks first class citizens and make them easier
1894 to use from C:
1895 (make-hook, add-hook!, remove-hook!, run-hooks): Moved to
1896 libguile/feature.c.
1897
1898 * boot-9.scm: Added warnings about bindings used in
1899 libguile/modules.c: the-module, set-current-module,
1900 make-modules-in, beautify-user-module!, module-eval-closure.
1901
1902 1998-11-21 Mikael Djurfeldt <mdj@kenneth>
1903
1904 * boot-9.scm (the-environment): New special form: Returns an
1905 object representing the current local evaluation environment.
1906 This object can be used in `local-eval' and `defined?'.
1907
1908 1998-11-13 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
1909
1910 * boot-9.scm (collect): New syntax. Similar to begin but returns
1911 a list of the results of all forms in the sequence instead of the
1912 result of the last form.
1913
1914 1998-11-10 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
1915
1916 * boot-9.scm (values, call-with-values): Moved here from
1917 syncase.scm.
1918
1919 * syncase.scm (values, call-with-values): Moved to boot-9.scm.
1920
1921 * boot-9.scm (readline-options, readline-enable, readline.disable,
1922 readline-set!: New options interface.
1923
1924 * readline.scm (readline-port): Use readline-options-interface.
1925
1926 1998-11-05 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
1927
1928 * boot-9.scm: Set the repl start module in `top-repl' instead of
1929 at the end of boot-9.scm.
1930
1931 1998-11-01 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1932
1933 * emacs.scm (format): Bugfix: Handle multiple arguments
1934 correctly. (Thanks to Thien-Thi Nguyen.)
1935
1936 1998-11-01 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
1937
1938 * boot-9.scm (exit-hook): New hook: Is run at the very end of an
1939 interactive session.
1940 (top-repl): Run exit-hook on exit.
1941
1942 * readline.scm (readline-port): Maybe read history; Maybe write
1943 history at exit (add to exit-hook).
1944
1945 Fri Oct 30 15:15:37 1998 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1946
1947 * readline.scm (make-readline-port): Bugfixed last change...
1948
1949 1998-10-28 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
1950
1951 * readline.scm (make-readline-port): Don't set prompt to "... " if
1952 read line was empty.
1953
1954 1998-10-19 Jim Blandy <jimb@zwingli.cygnus.com>
1955
1956 * boot-9.scm, debug.scm, expect.scm, hcons.scm, lineio.scm,
1957 r4rs.scm, slib.scm, threads.scm: Update copyright years.
1958
1959 * getopt-gnu-style.scm, slib.scm: Add copyright notice.
1960
1961 Talked to Stallman. Actually, the syntax-case copyright is no
1962 problem. Duh.
1963 * Makefile.am (ice9_sources): Revert last change.
1964 * syncase.scm, psyntax.pp, psyntax.ss: Added again.
1965 * Makefile.in: Regeneretade.
1966
1967 * boot-9.scm: Don't assume that this file is loaded just before
1968 entering a read-eval-print loop. Turn code to load (ice-9 emacs)
1969 into...
1970 (load-emacs-interface): New function.
1971 (top-repl): Call it, if use-emacs-interface is defined and true.
1972 At this point, we *do* know we're about to enter a REPL.
1973
1974 We can't include Kent Dybvig's syntax-case macro expander in the
1975 core Guile distribution, because we don't have copyright
1976 assignments for this code. We can certainly distribute them as a
1977 separate package, but Guile should be FSF code.
1978 * syncase.scm, psyntax.pp, psyntax.ss: Removed.
1979 * Makefile.am (ice9_sources): Removed syncase.scm, psyntax.pp, and
1980 psyntax.ss.
1981 * Makefile.in: Regenerated.
1982
1983 * Makefile.am (ice9_sources): Add getopt-gnu-style.scm.
1984 * Makefile.in: Regenerated.
1985
1986 1998-10-18 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
1987
1988 * boot-9.scm: Added extended read syntax for byte vectors #y(...)
1989 and short vectors #h(...).
1990
1991 1998-10-14 Jim Blandy <jimb@zwingli.cygnus.com>
1992
1993 * calling.scm (excursion-function-syntax): Use a sequence of
1994 set!'s, not a single multi-variable set!; we removed support for
1995 that syntax a long time ago. (Thanks to Shuji Narazaki.)
1996
1997 1998-10-12 Jim Blandy <jimb@zwingli.cygnus.com>
1998
1999 * r4rs.scm (OPEN_READ, OPEN_WRITE, OPEN_BOTH): Don't bother
2000 testing software-type here. That's the least of our Windows
2001 porting issues, and it's done wrong anyway.
2002
2003 1998-10-09 Jim Blandy <jimb@zwingli.cygnus.com>
2004
2005 * boot-9.scm (read-path-list-notation-warning): New function:
2006 print a warning the first time we see `#/' notation.
2007
2008 * q.scm (sync-q!, q?, q-remove!, q-push!, enq!): Lots of bugs, and
2009 (eq? #f '()) assumptions. Make functions that aren't documented
2010 to return anything else return the queue itself. (Bug report from
2011 Michael Livshin --- thanks!)
2012
2013 1998-08-21 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2014
2015 * debug.scm (trace-entry, trace-exit): Removed re-enabling of
2016 trace flag.
2017
2018 * boot-9.scm (make-options): Bugfix: Changed pair? --> list? in
2019 order to allow the empty list as arg.
2020 (error-catching-loop): Use `with-traps' to create a dynamic
2021 context with traps enabled.
2022
2023 1998-08-19 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
2024
2025 * boot-9.scm: Removed (ice-9 regex) from use-list of (guile)
2026 module.
2027 (try-using-libtool-name): Removed dependency on (ice-9 regex).
2028
2029 1998-08-15 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
2030
2031 * boot-9.scm: Make the root module use (ice-9 regex) if
2032 available. The dynamic linking facilities in boot-9.scm are
2033 currently dependent upon regular expressions. My change of
2034 1998-07-14 removed (ice-9 regex) from the use-list of the root
2035 module and thereby destroyed dynamic linking.
2036
2037 1998-07-29 Jim Blandy <jimb@zwingli.cygnus.com>
2038
2039 * Makefile.in: Regenerated using the last public version of
2040 automake, not the hacked Cygnus version.
2041
2042 1998-07-28 Jim Blandy <jimb@zwingli.cygnus.com>
2043
2044 * Makefile.in: Regenerated, after removing Totoro kludge.
2045
2046 1998-07-28 Jim Blandy <jimb@totoro.red-bean.com>
2047
2048 * getopt-gnu-style.scm: New file. (Thanks to Russ McManus.)
2049
2050 1998-07-26 Jim Blandy <jimb@zwingli.cygnus.com>
2051
2052 * Makefile.in Rebuilt, for config changes in parent dir.
2053
2054 1998-07-21 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2055
2056 * readline.scm (make-readline-port): Set prompt string to "... "
2057 after first read line. (Thanks to Richard Polton.)
2058
2059 1998-07-19 Jim Blandy <jimb@zwingli.cygnus.com>
2060
2061 * lineio.scm (make-line-buffering-input-port): Don't use
2062 ungetc-char-ready?, since we don't provide that function any
2063 more. The unread-string function doesn't interact properly with
2064 any of the standard I/O functions anyway. (Thanks to Andrew
2065 Archibald.)
2066
2067 * hcons.scm (hashq-cons-assoc): Don't assume the empty list is
2068 false. Return false when we cannot find a matching entry in the
2069 list. (Thanks to Andrew Archibald.)
2070
2071 1998-07-16 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
2072
2073 * boot-9.scm (export, export-syntax): New special forms: Export
2074 bindings from a module. `(export name1 name2 ...)' can be used at
2075 the top of a module (after `define-module') to specify which names
2076 should be exported. It can be used as an alternative to
2077 `define-public'. `export-syntax' works equivalently to `export'
2078 but is intended for export of syntactic keywords.
2079 (Thanks to Thien-Thi Nguyen.)
2080
2081 1998-07-15 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
2082
2083 * boot-9.scm: Renamed module `(guile-repl)' --> `(guile-user)'.
2084
2085 1998-07-14 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2086
2087 * boot-9.scm: Let the user start in module `(guile-repl)' instead
2088 of module `(guile)'. Also make sure that `(guile-repl)' uses
2089 suitable modules. This change improves Guile stability
2090 substantially since bindings will only be copied from the root
2091 module: If the user redefines builtins in `(guile-repl)' it won't
2092 affect the internal operation of Guile itself.
2093
2094 1998-06-19 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
2095
2096 * boot-9.scm (load-module): When loading files from within files
2097 themselves being loaded: Use the directory path of the file being
2098 loaded as root for relative filenames. (After suggestion by
2099 Steven G. Johnson.)
2100
2101 1998-06-15 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2102
2103 * emacs.scm (emacs-load): New feature: Eval in specified module.
2104
2105 1998-06-14 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2106
2107 * readline.scm: Typo in regex module name.
2108
2109 1998-06-13 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
2110
2111 * readline.scm (apropos-completion-function): regexp-quote text to
2112 be completed.
2113
2114 1998-06-11 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2115
2116 * debug.scm, emacs.scm: Bugfix: Treat `the-last-stack' as a fluid.
2117
2118 1998-06-09 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2119
2120 * boot-9.scm: Check that (current-input-port) is a tty before
2121 enabling readline. (Thanks to Michael N. Livshin.)
2122
2123 1998-06-07 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2124
2125 * boot-9.scm (use-syntax): Turned into a macro inorder to be
2126 similar in use to `use-modules'.
2127 Example: (use-syntax (ice-9 syncase)) will 1. load the module
2128 (ice-9 syncase), and, 2. install the procedure `syncase' as eval
2129 transformer.
2130 (internal-use-syntax): New procedure.
2131 (process-define-module): Use `internal-use-syntax'.
2132
2133 1998-05-19 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2134
2135 * Makefile.am (ice9_sources): Add emacs.scm.
2136
2137 1998-05-13 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2138
2139 * readline.scm: Use the new readline facilities: Add the
2140 possibility to control input and output ports; Add apropos
2141 completion.
2142
2143 * boot-9.scm: Antirevert Jim's readline code which he reverted
2144 19971027 and adapt it to the current readline interface.
2145
2146 * boot-9.scm (top-repl): Only enable readline if not using the
2147 Emacs interface; Only use repl prompt when using the readline port
2148 from repl-read. (We don't want to see it when calling `read'.)
2149
2150 * boot-9.scm (remove-hook!): Parenthesis bug.
2151
2152 1998-05-11 Mikael Djurfeldt <mdj@kenneth>
2153
2154 * boot-9.scm: Load readline module if readline is present.
2155
2156 * readline.scm (apropos-completion-function): New procedure:
2157 Symbolic completion. (Thanks to Andrew Archibald!)
2158
2159 1998-04-22 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2160
2161 * boot-9.scm (process-define-module): Added keyword use-syntax.
2162
2163 1998-04-19 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2164
2165 * nonblocking.scm: Removed. libguile is now inherently
2166 nonblocking through the use of scm_internal_select.
2167
2168 * emacs.scm: Removed use of nonblocking.scm.
2169
2170 * gwish.scm, gtcl.scm: Removed. tcltk.scm has made these
2171 obsolete.
2172
2173 1998-04-15 Mikael Djurfeldt <mdj@nada.kth.se>
2174
2175 * runq.scm (runq-control): Corrected spelling of enqueue!.
2176 (Thanks to Karl M. Hegbloom.)
2177
2178 1998-03-30 Mikael Djurfeldt <mdj@nada.kth.se>
2179
2180 * boot-9.scm: Added new run-time option interface eval-options.
2181
2182 1998-03-28 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2183
2184 * boot-9.scm (remove-hook!): New macro. (Thanks to Maciej
2185 Stachowiak.)
2186
2187 1998-01-30 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2188
2189 * threads.scm: Added simple error and signal handler.
2190 (make-thread, begin-handler): Use this handler. The most
2191 important effect of this is that signals get unmasked.
2192 Previously, when a signal was thrown signals remained masked
2193 (signals get masked when a signal is taken) which influenced other
2194 threads.
2195
2196 1998-01-01 Tim Pierce <twp@skepsis.com>
2197
2198 A better fix to the SLIB identity problem -- thanks to Marius Vollmer.
2199 * slib.scm (identity): Unmake public.
2200 (slib:eval): Evaluate inside `slib-module'.
2201
2202 1997-12-24 Tim Pierce <twp@skepsis.com>
2203
2204 * boot-9.scm: Doc fix.
2205
2206 * slib.scm (identity): Made public.
2207 (home-vicinity): New function (from SLIB/Template.scm).
2208
2209 1997-12-13 Tim Pierce <twp@skepsis.com>
2210
2211 * boot-9.scm (read-line): Rewritten to call %read-line for
2212 improved speed. Minor user-visible changes: the new functions are
2213 hardwired to treat the LFD character as signifying end-of-line, so
2214 changing `scm-line-incrementors' will no longer affect the
2215 behavior of read-line. On platforms which do not represent
2216 end-of-line with a LFD character, read-line should behave more
2217 like native line-processing facilities, but there is still a ways
2218 to go here.
2219
2220 Sat Nov 29 01:24:46 1997 Mikael Djurfeldt <mdj@kenneth>
2221
2222 * boot-9.scm (error-catching-loop, save-stack): `the-last-stack'
2223 is now a fluid.
2224
2225 1997-11-28 Tim Pierce <twp@skepsis.com>
2226
2227 * boot-9.scm (find-and-link-dynamic-module): If a module directory
2228 contains a .la file (a libtool support file), attempt to extract
2229 the shared library name from that file. If the .la file does not
2230 exist, try to link against a .so file. Libtool-generated compiled
2231 modules should load more cleanly in Guile now.
2232 (try-using-libtool-name, try-using-sharlib-name): New functions.
2233
2234 Sun Nov 9 06:10:59 1997 Gary Houston <ghouston@actrix.gen.nz>
2235
2236 * boot-9.scm (set-batch-mode?!, batch-mode?): initialize more
2237 usefully so they will work from a script.
2238
2239 1997-10-31 Marius Vollmer <mvo@zagadka.ping.de>
2240
2241 * boot-9.scm (inherit-print-state): Moved definition to the
2242 neighborhood of the record code.
2243
2244 Mon Oct 27 02:05:49 1997 Jim Blandy <jimb@totoro.red-bean.com>
2245
2246 * boot-9.scm: Revert changes to this file from Oct 23. It turns
2247 out to interact badly with the Emacs support and the Tcl/Tk
2248 support. It's not a high enough priority at the moment to be
2249 worth fixing. I'm leaving the other readline support in, though.
2250
2251 Sat Oct 25 14:23:22 1997 Jim Blandy <jimb@totoro.red-bean.com>
2252
2253 * Makefile.am: Include readline.scm in the list of files to be
2254 installed, so Guile can find it for interactive use.
2255 * Makefile.in: Regenerated.
2256
2257 Thu Oct 23 01:00:33 1997 Jim Blandy <jimb@totoro.red-bean.com>
2258
2259 Add support for readline function.
2260 * readline.scm: New module.
2261 * boot-9.scm (repl-reader): New function.
2262 (scm-style-repl): Call repl-reader, instead of doing the reading
2263 ourselves. Remove repl-report-reset; it was never used for
2264 anything.
2265 (top-repl): If we've got the readline primitives, then redefine
2266 repl-reader to use them.
2267 If we've got the readline primitives, import the readline module.
2268
2269 * ls.scm (ls, lls): Don't assume (eq? #f '()).
2270
2271 Wed Oct 22 18:26:57 1997 Jim Blandy <jimb@totoro.red-bean.com>
2272
2273 * calling.scm, common-list.scm, ls.scm, q.scm, runq.scm,
2274 string-fun.scm: Added copyright notices; reformatted.
2275
2276 Thu Oct 9 05:44:00 1997 Gary Houston <ghouston@actrix.gen.nz>
2277
2278 * expect.scm: (expect-regexec): new procedure, use it in
2279 expect-strings to fix the => syntax under the new regex system.
2280 (top): include regex module in define-module statement.
2281
2282 Wed Oct 8 03:16:01 1997 Gary Houston <ghouston@actrix.gen.nz>
2283
2284 * (error-catching-loop): new local variable "interactive". if
2285 #f, abort terminates the process.
2286 (set-batch-mode?!, batch-mode?): new closures, defined in
2287 error-catching-loop. the names are from scsh.
2288
2289 1997-10-06 Marius Vollmer <mvo@zagadka.ping.de>
2290
2291 * boot-9.scm (inherit-print-state): If NEW-PORT contains a
2292 print-state, throw it away.
2293
2294 Fri Oct 3 12:00:00 Mikael Djurfeldt <mdj@nada.kth.se>
2295
2296 * boot-9.scm (struct-layout): Use `vtable-index-layout' instead of
2297 `0'.
2298
2299 Thu Oct 2 12:00:00 Mikael Djurfeldt <mdj@nada.kth.se>
2300
2301 * boot-9.scm (struct-printer, make-struct-printer,
2302 set-struct-printer-in-vtable!, *struct-printer*): Removed.
2303 (record-type-vtable, make-record-type): Don't use make-struct-printer.
2304 (record-type-vtable): User fields "prpr" (printer is no longer a
2305 user field).
2306 (record-type-name, record-type-fields): Decreased slot index by
2307 one; Use `vtable-offset-user'.
2308
2309 Thu Oct 2 12:00:00 Marius Vollmer <mvo@zagadka.ping.de>
2310
2311 * boot-9.scm (inherit-print-state): New experimental function.
2312
2313 Tue Sep 30 13:12:48 1997 Jim Blandy <jimb@totoro.red-bean.com>
2314
2315 Suggestion and script from Maciej Stachowiak:
2316 * boot-9.scm: Split off modules into separate, autoloadable files.
2317 This reduces startup time from 10.5s to 5.5s (user cpu).
2318 * calling.scm, common-list.scm, ls.scm, q.scm, runq.scm,
2319 string-fun.scm: New files, containing stuff that used to be in
2320 boot-9.scm.
2321 * Makefile.am (ice9_sources): List new files here, for
2322 distribution and installation.
2323 * Makefile.in: Regenerated.
2324
2325 Mon Sep 29 23:53:55 1997 Jim Blandy <jimb@totoro.red-bean.com>
2326
2327 * Makefile.in: Regenerated with automake 1.2c.
2328
2329 Mon Sep 29 03:21:24 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2330
2331 * slib.scm (slib:load): slib:load first tries to load the file
2332 named NAME, then NAME.scm. On error, report the error occuring at
2333 the first attempt (NAME) rather than the second (NAME.scm).
2334
2335 * boot-9.scm: Bugfix: Hard-solder the print-option procedure into
2336 the make-options macro so that we needn't refer to a global
2337 symbol.
2338
2339 Sun Sep 28 21:40:24 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2340
2341 * debug.scm: Moved options interface procedures to boot-9.scm.
2342
2343 * boot-9.scm: Define options interface procedures here instead.
2344
2345 Sat Sep 27 20:19:20 1997 Jim Blandy <jimb@totoro.red-bean.com>
2346
2347 * boot-9.scm (separate-fields-discarding-char,
2348 separate-fields-after-char, separate-fields-before-char): Call
2349 continuation function, RET, as advertised: with each separated
2350 field a separate argument.
2351
2352 * Makefile.in: Regenerated with automake 1.2a.
2353
2354 Sat Sep 20 14:23:53 1997 Mikael Djurfeldt <mdj@kenneth>
2355
2356 * slib.scm (slib:load): Export.
2357
2358 * boot-9.scm (in-vicinity): Bugfix: Don't add "/" to an empty
2359 vicinity;
2360 Provide defmacro.
2361
2362 Thu Sep 18 01:24:31 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2363
2364 * r4rs.scm (apply): Set name property to 'apply.
2365
2366 Tue Sep 16 22:09:50 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2367
2368 * boot-9.scm (keyword->symbol, display-usage-report): Changed
2369 length --> string-length. (Thanks to Aleksandar Bakic.)
2370 (separate-fields-discarding-char, separate-fields-after-char,
2371 separate-fields-before-char): Bugfix from Maciej Stachowiak
2372 <mstachow@mit.edu>. Thanks!
2373 (try-module-linked): Try to find module among those already
2374 registered.
2375 (try-module-dynamic-link): Removed the first test which
2376 corresponds to a call to `try-module-linked'.
2377 (resolve-module): Resolve modules in this order: 1. Already
2378 registered modules (for example those which have been statically
2379 linked), 2. Try to autoload an .scm-file, 3. Try to dynamically
2380 link a .so-file.
2381
2382 Mon Sep 15 23:39:54 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2383
2384 * boot-9.scm (iota): Renamed list-reverse! --> reverse!
2385
2386 Thu Sep 11 02:31:38 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2387
2388 * session.scm (name): New procedure: Gives name of object.
2389 (source): New procedure: Gives source of object.
2390
2391 Wed Sep 10 20:12:45 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2392
2393 * boot-9.scm (primitive-macro?): New procedure.
2394
2395 * slib.scm: Added hack which transfers syntactic information from
2396 the builtin variable `define' to the slib version if module (ice-9
2397 syncase) has been loaded. This is necessary to get correct
2398 expansion inside the slib module.
2399
2400 * psyntax.ss (build-let, build-named-let): New output
2401 constructors.
2402 (build-lexical-var): Seed gensym with symbolic name.
2403 (self-evaluating?): Add keywords among self-evaluating types.
2404 (let): New core form.
2405 (if): Removed from core language.
2406 (or, and, let, cond): Removed syntactic definitions.
2407 (sc-expand3): New procedure: Expander which takes optional mode
2408 and eval-syntactic-expanders-when arguments.
2409
2410 * syncase.scm (psyncomp): New procedure: Recompiles psyntax.pp.
2411 Should be used inside the (ice-9 syncase) module with (use-syntax
2412 syncase) and with the current directory containing the psyntax.ss
2413 source.
2414 Added hack to transfer syntactic information from the builtin
2415 variable `define' to the slib version if module (ice-9 slib) has
2416 been loaded.
2417
2418 Fri Sep 5 05:47:36 1997 Mikael Djurfeldt <mdj@faun.nada.kth.se>
2419
2420 * syncase.scm (sc-interface, sc-expand): Removed hook setup.
2421 (syncase): Publish syntax transformer to be used with
2422 `use-syntax'.
2423 (sc-macro): Use this as the value when publishing macros.
2424
2425 * boot-9.scm (module-type): Added `transformer'.
2426 (make-module): Modified initialization.
2427 (module-transformer, set-module-transformer!): Selector and
2428 mutator for module-associated transformer.
2429 (set-current-module): Use module-transformer to set
2430 `scm:eval-transformer'.
2431 (module-use!): Previous change reverted.
2432 (use-syntax): New function: Install a transformer in current
2433 module.
2434 (sc-interface, sc-expand): Removed! :)
2435
2436 Fri Sep 5 03:09:09 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2437
2438 * emacs.scm (emacs-load): Added new parameter `module'.
2439
2440 * syncase.scm (putprop, getprop): Modified to use the object
2441 properties of the variable object corresponding to the symbol;
2442 This way we can ride on the mechanisms of the module system.
2443 Changed `builtin-variable' calls to `define-public' calls.
2444 Setup the hooks sc-expand and sc-interface.
2445
2446 * boot-9.scm (sc-interface, sc-expand): New builtin variables.
2447 (set-current-module): Switch to and from sc-expand as
2448 scm:eval-transformer when going into and out of modules using
2449 syncase macros.
2450 (module-use!): Set scm:eval-transformer to sc-expand when adding
2451 the syncase interface.
2452
2453 Thu Sep 4 14:57:04 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2454
2455 * syncase.scm (putprop): Temporary fix which publishes new syntax
2456 globally (the old behaviour was complex and connected to the inner
2457 workings of the current module system).
2458
2459 Wed Sep 3 21:29:13 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2460
2461 * psyntax.ss: Updated.
2462 psyntax.pp: Bugfix: Previous version had some leading "t":s cut
2463 off!
2464
2465 Tue Sep 2 00:26:42 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2466
2467 * boot-9.scm (gensym): Removed (replaced by primitive).
2468 (obarray-gensym): Rewritten to use `gensym'.
2469 (gentemp): Rewritten to use `gensym'.
2470
2471 Mon Sep 1 20:08:32 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2472
2473 * gtcl.scm (make-tcl-binder): Rewritten to choose bindings
2474 according to the following priorities:
2475 1. tcl bindings which are present in override-scheme-list
2476 2. bindings from the-scm-module
2477 3. tcl bindings
2478 This way the gtcl module can occur first in the use-list without
2479 disabling the scheme interpreter.
2480 (new-interpreter): New function.
2481
2482 * gwish.scm: Moved initialization code for the-interpreter to
2483 gtcl.scm; Moved name space cleaning code to gtcl.scm and rewrote
2484 it; Call `new-interpreter'; Don't :use-module (guile).
2485
2486 Thu Aug 28 23:48:53 1997 Jim Blandy <jimb@totoro.red-bean.com>
2487
2488 * Makefile.in: Regenerated.
2489
2490 Wed Aug 27 11:35:09 1997 Jim Blandy <jimb@totoro.red-bean.com>
2491
2492 * Makefile.in: Regenerated, so it uses "tar", not "gtar".
2493
2494 Mon Aug 25 22:00:44 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2495
2496 * emacs.scm (object->string, format, error-args->string): New
2497 procedures.
2498 (emacs-frame-eval): Reworked.
2499
2500 Mon Aug 25 16:15:55 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2501
2502 * session.scm (apropos-internal): Musn't initialize symbol
2503 accumulator with a constant pair. That led to mutation of the
2504 source!
2505
2506 Sun Aug 24 01:03:10 1997 Mikael Djurfeldt <mdj@kenneth>
2507
2508 * session.scm (vector-for-each): Removed.
2509 (apropos): vector-for-each --> array-for-each.
2510 (apropos-internal): New function. Return list of accessible
2511 symbols matching regexp.
2512
2513 * debug.scm (frame-number->index): New function. Convert frame
2514 number (as displayed in the backtrace) to frame index (to be used
2515 in stack-ref).
2516
2517 * emacs.scm (emacs-load): New arguments: interactivep: when
2518 non-false, send back results to Emacs; colnum: Column number;
2519 Use modules (ice-9 debug) and (ice-9 session);
2520 (no-stack, no-source): New simple-actions;
2521 (result-to-emacs): New procedure. Sends data to Emacs via the
2522 result protocol;
2523 (get-frame-source, emacs-select-frame, emacs-frame-eval,
2524 emacs-symdoc): New procedures.
2525
2526 Wed Aug 20 13:21:11 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2527
2528 * emacs.scm (emacs-load): Adjust stack narrowing.
2529 (whitespace-chars): Include #\np.
2530
2531 * syncase.scm: Also turn off debugging evaluator and recording of
2532 procedure names during loading of psyntax.pp.
2533
2534 * psyntax.pp: Removed leading blanks => 800K -> 100K.
2535
2536 Tue Aug 19 02:39:41 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2537
2538 * syncase.scm: Don't tamper with debug mode setting when enabling
2539 macros. Instead cut the stack with start-stack.
2540 Load psyntax.pp with recording of positions turned off.
2541
2542 * psyntax.pp, psyntax.ss (quasiquote): Changed fx= --> =.
2543
2544 * syncase.scm: New file: Guile-adaption for syntax-case macros.
2545 * psyntax.pp, psyntax.ss: Syntax-case macros, portable version 2 by
2546 R. Kent Dybvig, Oscar Waddell, Bob Hieb and Carl Bruggeman
2547
2548 Mon Aug 18 21:58:25 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2549
2550 * session.scm: New file: Session support.
2551 (apropos): New procedure: List bindings given regexp.
2552
2553 Sat Aug 16 18:44:24 1997 Gary Houston <ghouston@actrix.gen.nz>
2554
2555 * boot-9.scm: define tms accessors: clock, utime, stime, cutime,
2556 cstime.
2557
2558 Thu Aug 14 19:55:37 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2559
2560 * emacs.scm (emacs-load): Something has changed in the reader so
2561 that we now should set the port line count to the specified value
2562 (linum) instead of (- linum 1).
2563
2564 * slib.scm (slib:load): Use load-from-path instead of
2565 primitive-load-path so that backtraces get narrowed properly at
2566 the top.
2567
2568 * boot-9.scm (top-repl): Save stack already in signal handler in
2569 order to narrow it correctly.
2570 (save-stack): Adjust narrowing tag for the top of load-stacks.
2571
2572 Tue Jul 29 01:18:08 1997 Gary Houston <ghouston@actrix.gen.nz>
2573
2574 * boot-9.scm (move->fdes, dup->port): use dup->fdes, not primitive-dup.
2575 (dup->fdes): deleted, now done in C.
2576
2577 Sat Jul 26 08:00:42 1997 Gary Houston <ghouston@actrix.gen.nz>
2578
2579 * boot-9.scm (setenv): new procedure, scsh compatible.
2580
2581 Sat Jul 26 21:30:10 1997 Marius Vollmer <mvo@zagadka.ping.de>
2582
2583 * boot-9.scm (with-fluids): New macro to go with the
2584 builtin `with-fluids*'.
2585
2586 Thu Jul 24 04:28:11 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2587
2588 * slib.scm (install-require-module): In newer versions of slib
2589 *catalog* is #f until the first access. Therefore we call
2590 require:provided? for a random feature if *catalog* is #f.
2591
2592 Wed Jul 23 20:13:04 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2593
2594 * boot-9.scm: If using emacs interface, enable backtraces
2595 automatically.
2596
2597 Mon Jul 21 06:45:45 1997 Gary Houston <ghouston@actrix.gen.nz>
2598
2599 * boot-9.scm (dup->port, dup->inport, dup->outport, dup->fdes,
2600 dup, fdes->inport, fdes->outport, port->fdes): new procedures.
2601 (duplicate-port): was a C primitive, now it's here.
2602 (move->fdes): allow the first argument to be a file descriptor.
2603 Return the modified port or file descriptor (was unspecified.)
2604
2605 Fri Jul 11 00:13:43 1997 Jim Blandy <jimb@floss.red-bean.com>
2606
2607 Changes to compile under gnu-win32, from Marcus Daniels:
2608 * boot-9.scm (load-user-init): If HOME is unset, provide
2609 a default of /.
2610
2611 * boot-9.scm (define-public): Changed to accomodate Hobbit.
2612
2613 Tue Jun 24 00:31:47 1997 Jim Blandy <jimb@floss.red-bean.com>
2614
2615 * boot-9.scm, debug.scm, hcons.scm, lineio.scm, mapping.scm,
2616 poe.scm, slib.scm, tags.scm, threads.scm: Use normal list
2617 notation, instead of #/ notation.
2618
2619 * expect.scm (expect-strings): Pass regexp/newline flag to
2620 make-regexp.
2621
2622 Mon Jun 23 16:13:38 1997 Jim Blandy <jimb@floss.red-bean.com>
2623
2624 Fix inconsistencies in parsing of #/ style lists.
2625 * boot-9.scm (read-path-list-notation): New function.
2626 (parse-path-symbol): Deleted. Replaced by above.
2627 Plug in read-path-list-notation as the parser for #/ lists,
2628 instead of the anonymous lambda form calling parse-path-symbol.
2629 (Thanks to Maurizio Vitale.)
2630
2631 * boot-9.scm (make-list): Remove the definition of this function
2632 from the (ice-9 common-list) module; make the `init' argument
2633 optional in the scm module's definition, to match the deleted
2634 definition. Harmony reigneth? (Thanks to Bernard URBAN.)
2635
2636 Sun Jun 22 18:33:17 1997 Jim Blandy <jimb@floss.red-bean.com>
2637
2638 Try to detect when people are using one version of libguile and a
2639 different version of ice-9. People have been skewing things and
2640 sending in bug reports.
2641 * version.scm.in: New file, which the configure script munges to
2642 produce version.scm, which contains the ice-9 config stamp.
2643 * boot-9.scm: Compare the libguile and ice-9 config stamps;
2644 display a warning if the two are different.
2645 * Makefile.am: Install version.scm, but don't distribute it.
2646 Distribute version.scm.in, but don't install it.
2647 * Makefile.in: Regenerated.
2648
2649 Thu Jun 19 21:01:16 1997 Jim Blandy <jimb@floss.red-bean.com>
2650
2651 * slib.scm (slib:warn): Alias for WARN function.
2652
2653 Fri Jun 13 00:32:04 1997 Jim Blandy <jimb@floss.red-bean.com>
2654
2655 * boot-9.scm (struct-printer): Fix off-by-one error in range
2656 check. Correctly check for struct printer tag.
2657
2658 * expect.scm: Turn this into a module, (ice-9 expect).
2659 (expect-port, expect-timeout, expect-timeout-proc,
2660 expect-eof-proc, expect-char-proc, expect, expect-strings,
2661 expect-select): Make these public definitions.
2662 (expect-strings): Use make-regexp and regexp-exec, instead of
2663 regcomp and regexec. We've omitted the REG_NEWLINE flag; hope
2664 that's okay.
2665
2666 * boot-9.scm (with-regexp-parts): Comment this out. It has no
2667 users in the core, and relies on mildly hairy details of the old
2668 regexp interface.
2669
2670 * test.scm: Re-enable tests asserting that '() is true, and not a
2671 boolean. This stuff has been true for a while.
2672
2673 * boot-9.scm (ipow-by-squaring, butlast): Fix uses of outdated
2674 function names.
2675
2676 * boot-9.scm (with-excursion-getter-and-setter, q-rear): Doc
2677 fixes.
2678
2679 Wed Jun 11 00:31:40 1997 Jim Blandy <jimb@floss.red-bean.com>
2680
2681 * Makefile.in: Regenerated after xtra_PLUGIN_guile_libs change in
2682 ../configure.in.
2683
2684 Fri Jun 6 14:37:18 1997 Marius Vollmer <mvo@zagadka.ping.de>
2685
2686 * boot-9.scm (struct-printer): Bugfix: Check the layout of the
2687 vtable and not the one of the struct.
2688
2689 Wed Jun 4 23:27:16 1997 Marius Vollmer <mvo@zagadka.ping.de>
2690
2691 * boot-9.scm (struct-layout, %struct-printer-tag, struct-printer,
2692 make-struct-printer, set-struct-printer-in-vtable!): New bindings
2693 to support printing of structures.
2694 (record-type-vtable, make-record-type): Add slot to hold printing
2695 function and initialize it with something appropriate. Removed
2696 commented out printing code.
2697 (record-type-name, record-type-fields): Adjusted slot offsets.
2698 (%print-module): Reduce argument list to "mod" and "port".
2699
2700 Tue Jun 3 17:04:18 1997 Jim Blandy <jimb@totoro.cyclic.com>
2701
2702 * slib.scm (identity): New function, used by SLIB.
2703
2704 Sat May 31 18:57:12 1997 Gary Houston <ghouston@actrix.gen.nz>
2705
2706 * boot-9.scm: signal-handler, alarm-thunk: removed.
2707 don't define ticks-interrupt etc.
2708 top-repl: install signal handlers for SIGINT, SIGFPE, SIGSEGV, SIGBUS
2709 during call to scm-style-repl.
2710
2711 Fri May 30 18:08:10 1997 Jim Blandy <jimb@floss.cyclic.com>
2712
2713 * slib.scm (slib:load): Use primitive-load-path instead of
2714 basic-load. This is probably wrong, but hopefully the entire
2715 source access system will be revised soon anyway, and this will
2716 make require behave more like Emacs Lisp's require. If this
2717 breaks something, please let me know. Maybe this is real dumb.
2718
2719 Thu May 29 02:36:48 1997 Jim Blandy <jimb@floss.cyclic.com>
2720
2721 * regex.scm: Add a module declaration. Use DEFINE-PUBLIC everywhere.
2722 * boot-9.scm: If the `regex' feature is present, use the module
2723 (ice-9 regex).
2724
2725 Tue May 27 22:48:14 1997 Tim Pierce <twp@twp.tezcat.com>
2726
2727 * regex.scm: New file.
2728 * Makefile.am (subpkgdata_DATA): Add regex.scm.
2729 * Makefile.in: Regenerated.
2730
2731 Mon May 26 17:24:48 1997 Jim Blandy <jimb@totoro.cyclic.com>
2732
2733 * COPYING, boot-9.scm, debug.scm, emacs.scm, expect.scm, gtcl.scm,
2734 gwish.scm, hcons.scm, lineio.scm, mapping.scm, nonblocking.scm,
2735 oldprint.scm, poe.scm, r4rs.scm, source.scm, tags.scm, test.scm,
2736 threads.scm: New address for FSF.
2737
2738 Fri May 16 04:09:45 1997 Jim Blandy <jimb@floss.cyclic.com>
2739
2740 * debug.scm: Update copyright years; this file has been worked on
2741 in 1997.
2742
2743 Thu May 15 07:56:08 1997 Gary Houston <ghouston@actrix.gen.nz>
2744
2745 * expect.scm: use gettimeofday instead of get-internal-real-time
2746 and use a floating point timeout when calling select. Untested,
2747 since the regex library is currently AWOL.
2748
2749 Wed May 14 21:00:30 1997 Jim Blandy <jimb@floss.cyclic.com>
2750
2751 * boot-9.scm (eval-string): Function deleted; it was already
2752 implemented in C, so there's no point in making a divergable copy
2753 here.
2754
2755 Tue May 13 16:40:06 1997 Jim Blandy <jimb@floss.cyclic.com>
2756
2757 * Makefile.in: Regenerated, using automake-1.1p.
2758
2759 Tue May 13 16:40:06 1997 Jim Blandy <jimb@floss.cyclic.com>
2760
2761 * Makefile.in: Regenerated, using automake-1.1p.
2762
2763 Tue May 13 02:48:49 1997 Gary Houston <ghouston@actrix.gen.nz>
2764
2765 * boot-9.scm (error-catching-loop): don't read a line from
2766 current input when quit is encountered, the previous change
2767 fixes this too.
2768
2769 Mon May 12 19:00:21 1997 Jim Blandy <jimb@floss.cyclic.com>
2770
2771 * boot-9.scm (scm-style-repl): After reading an expression,
2772 consume any trailing newline (perhaps preceded by whitespace), to
2773 avoid screwing up GDB. More detail in comments.
2774
2775 Mon May 5 13:18:38 1997 Jim Blandy <jimb@floss.cyclic.com>
2776
2777 * Makefile.am (ETAGS_ARGS): New variable, since we're not treating
2778 the Scheme code like code yet.
2779 * Makefile.in: Resrac,husrched.
2780
2781 Wed Apr 30 15:25:15 1997 Marius Vollmer <mvo@zagadka.ping.de>
2782
2783 * boot-9.scm (link-dynamic-module): Do not catch errors from
2784 dynamic-link and dynamic-call. When the shared library exists it
2785 is now assumed to be suitable for a dynamic C module.
2786
2787 Fri Apr 25 21:21:35 1997 Marius Vollmer <mvo@zagadka.ping.de>
2788
2789 * boot-9.scm (process-use-modules): New function to support the
2790 use-modules macro
2791 (use-modules): throw an error iff one of the requested modules
2792 can't be found.
2793
2794 Tue Apr 29 06:54:46 1997 Gary Houston <ghouston@actrix.gen.nz>
2795
2796 * boot-9.scm: don't define timer-thunk or gc-thunk.
2797
2798 Sun Apr 27 17:56:09 1997 Jim Blandy <jimb@floss.cyclic.com>
2799
2800 * aclocal.m4: Removed; unnecessary, given changes of Apr 24.
2801
2802 * Makefile.am (subpkgdatadir): Use "ice-9" instead of "@module@";
2803 we're not using AM_INIT_GUILE_MODULE any more.
2804 * Makefile.in: Regeneratitetedrerd.
2805
2806 Thu Apr 24 01:33:33 1997 Jim Blandy <jimb@floss.cyclic.com>
2807
2808 Get 'make dist' to work again.
2809 * Makefile.am (EXTRA_DIST): Remove PLUGIN files.
2810 * Makefile.in: Regenerated, like two tons of fleas.
2811
2812 Changes for reduced Guile distribution: one configure script,
2813 no plugins.
2814 * configure.in, configure: Removed.
2815 * Makefile.in: Regenerated.
2816
2817 Sat Apr 19 08:03:50 1997 Jim Blandy <jimb@floss.cyclic.com>
2818
2819 * boot-9.scm (eval-string, command-line, load-user-init): New
2820 functions.
2821
2822 Sat Apr 12 08:27:05 1997 Gary Houston <ghouston@actrix.gen.nz>
2823
2824 * boot-9.scm (log10): defined.
2825
2826 Tue Apr 1 17:46:49 1997 Gary Houston <ghouston@actrix.gen.nz>
2827
2828 * expect.scm (expect-select): correct the millisecond timeout
2829 arithmetic (from Marko.Kohtala@ntc.nokia.com).
2830
2831 Mon Mar 31 03:23:19 1997 Gary Houston <ghouston@actrix.gen.nz>
2832
2833 * boot-9.scm (open-input-pipe, open-output-pipe): defined here
2834 instead of in libguile.
2835 (tm:sec etc.) new accessors for broken-down time.
2836 (set-tm:sec etc.) new setters for broken-down time.
2837
2838 Thu Mar 27 05:06:00 1997 Gary Houston <ghouston@actrix.gen.nz>
2839
2840 * boot-9.scm (netent:addrtype, servent:port): added missing
2841 procedures.
2842 (netent:net, servent:proto): repaired.
2843 (utsname:sysname etc.): new accessors for uname.
2844
2845 Tue Mar 25 03:04:03 1997 Gary Houston <ghouston@actrix.gen.nz>
2846
2847 * boot-9.scm (sockaddr:fam, sockaddr:path, sockaddr:addr,
2848 sockaddr:port): new functions.
2849
2850 Wed Mar 19 04:50:34 1997 Gary Houston <ghouston@actrix.gen.nz>
2851
2852 * boot-9.scm: define accessor procedures for the objects returned
2853 by getpw, getgr, gethost, getnet, getproto, getserv (e.g.,
2854 passwd:name, where the first component is the name of the C structure
2855 and the second is the unprefixed C member name.)
2856
2857 Tue Mar 18 18:39:31 1997 Gary Houston <ghouston@actrix.gen.nz>
2858
2859 * boot-9.scm (setpwent, setgrent, sethostent, setnetent, setprotoent,
2860 setservent): no longer take an argument, it was bogus.
2861
2862 Thu Mar 13 00:13:41 1997 Gary Houston <ghouston@actrix.gen.nz>
2863
2864 * boot-9.scm (scm-error): deleted, reimplemented in C.
2865
2866 Mon Mar 10 15:48:31 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2867
2868 * boot-9.scm (process-define-module): Modified to handle both
2869 keywords and symbols.
2870
2871 Sat Mar 8 04:32:44 1997 Gary Houston <ghouston@actrix.gen.nz>
2872
2873 * slib.scm: update read usage.
2874
2875 * r4rs.scm: update primitive-load usage.
2876 Don't define read-sharp.
2877
2878 * boot-9.scm: use read-hash-extend to install extra read syntax.
2879 (read-sharp): removed.
2880 Adjust usage of primitive-load-path, read, which no longer take
2881 case_i or read-sharp arguments.
2882
2883 Sat Mar 8 00:07:54 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2884
2885 * boot-9.scm: Added loading of session support module.
2886
2887 * debug.scm: Removed `display-application'. (Replaced by
2888 primitive procedure.)
2889
2890 * boot-9.scm (beautify-user-module!): Don't add the root module
2891 interface to the end of the use-list of the root module.
2892
2893 Thu Mar 6 07:26:34 1997 Gary Houston <ghouston@actrix.gen.nz>
2894
2895 * boot-9.scm: repl-quit, repl-abort: obsolete variables deleted.
2896
2897 Wed Mar 5 20:30:24 1997 Gary Houston <ghouston@actrix.gen.nz>
2898
2899 * boot-9.scm: check use-emacs-interface for emacs support.
2900
2901 Sun Mar 2 19:47:14 1997 Gary Houston <ghouston@actrix.gen.nz>
2902
2903 * boot-9.scm (scm-style-repl): call repl-report-start-timing if
2904 read gets EOF.
2905 * (exit): alias for quit.
2906
2907 Sun Mar 2 05:25:11 1997 Gary Houston <ghouston@actrix.gen.nz>
2908
2909 * boot-9.scm (error-catching-loop thunk): use a status variable to
2910 return the quit args.
2911 (scm-style-repl): call -quit, passing return value from
2912 error-catching-repl. Make -quit return its args.
2913 stand-alone-repl: comment out, since it seems unused.
2914
2915 (error-catching-loop thunk): discard trailing junk after a (quit).
2916
2917 Sat Mar 1 15:24:39 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2918
2919 * boot-9.scm: Removed the old printer code.
2920
2921 * r4rs.scm (apply, call-with-current-continuation): Added comment
2922 explaining why apply and call/cc need to be closures.
2923
2924 * boot-9.scm (apply, call-with-current-continuation): Bugfix:
2925 Removed. These definitions are already present in r4rs.scm.
2926
2927 * debug.scm (trace-entry, trace-exit): Check that we're on a repl
2928 stack before printing traced frames; Re-enable trace flag at end
2929 of handlers.
2930
2931 Sat Mar 1 00:10:38 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2932
2933 * debug.scm: Add hook for reset of trace level at abort.
2934
2935 * boot-9.scm (run-hooks): New procedure.
2936 (add-hooks!): New macro.
2937 Change hooks to use these functions.
2938
2939 * debug.scm: *Warning* This feature is a bit premature. I add
2940 it anyway because 1. it is very useful, and, 2. you can start
2941 making it less premature by complaining to me and by modifying
2942 the source! :-)
2943 (trace): Given one or more procedure objects, trace each one.
2944 Given no arguments, show all traced procedures.
2945 (untrace): Given one or more procedure objects, untrace each one.
2946 Given no arguments, untrace all traced procedures. The tracing in
2947 Guile have an advantage to most other systems: We don't create new
2948 procedure objects, but mark the procedure objects themselves.
2949 This means that also anonymous and internal procedures can be
2950 traced.
2951
2952 * boot-9.scm (error-catching-loop): Added handling of apply-frame
2953 and exit-frame exceptions.
2954
2955 * boot-9.scm (assert-repl-prompt, the-prompt-string): Removed.
2956 (set-repl-prompt!): Setter for repl prompt.
2957 (scm-style-repl): If prompt is #f, don't prompt; if prompt is a
2958 string, display it; if prompt is a thunk, call it and display its
2959 result; otherwise display "> ".
2960 (Change suggested by Roland Orre <orre@nada.kth.se>.)
2961
2962 * r4rs.scm (%load-verbosely): Reverted change to
2963 `module-defined?', since the module system isn't bootstrapped when
2964 we load r4rs.scm. This is just a temporary fix to make the
2965 repository version runnable.
2966
2967 Thu Feb 27 23:25:47 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2968
2969 * boot-9.scm: Removed the enabling of debug evaluator and
2970 recording of source code positions. This was placed there for our
2971 convenience, but it has already sneaked into the distribution
2972 once... so we'd better add this in our local copies instead when
2973 we need it. (These options are normally enabled at the end of
2974 boot-9.scm when loading the debug module.)
2975
2976 Thu Feb 27 16:04:45 1997 Marius Vollmer <mvo@zagadka.ping.de>
2977
2978 * boot-9.scm (module-defined?): New function.
2979 (macroexpand-1, macroexpand): Use local-ref instead of defined?
2980 and eval.
2981 * r4rs.scm (%load-verbosely): Use "module-defined?" instead of
2982 "defined?".
2983 * slib.scm (defined?): New function to take the place of the
2984 builtin "defined?". It allways examines the slib module.
2985
2986 Mon Feb 24 21:46:15 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2987
2988 * configure.in: Added AM_MAINTAINER_MODE
2989
2990 Sat Feb 15 04:51:20 1997 Gary Houston <ghouston@actrix.gen.nz>
2991
2992 * boot-9.scm (read-sharp): define directly, don't go through a
2993 %read-sharp layer.
2994
2995 Tue Feb 11 08:45:48 1997 Gary Houston <ghouston@actrix.gen.nz>
2996
2997 * boot-9.scm (uniform-vector-set!): use uniform-array-set1!, not
2998 uniform-vector-set1! which doesn't exist.
2999
3000 Mon Feb 10 03:01:48 1997 Mikael Djurfeldt <mdj@kenneth>
3001
3002 * boot-9.scm (backtrace): Removed. (A C version now exists in
3003 backtrace.c.)
3004
3005 Fri Jan 24 06:05:36 1997 Gary Houston <ghouston@actrix.gen.nz>
3006
3007 * boot-9.scm (read-line!, read-delimited!, read-delimited,
3008 read-line): new procedures, see libguile/ChangeLog.
3009
3010 Thu Jan 16 17:07:03 1997 Marius Vollmer <mvo@zagadka.ping.de>
3011
3012 Added dynamic linking of modules. See libguile/DYNAMIC-LINKING.
3013
3014 * boot-9.scm (split-c-module-name, convert-c-registered-modules,
3015 init-dynamic-module, dynamic-maybe-call,
3016 find-and-link-dynamic-module, link-dynamic-module,
3017 try-module-dynamic-link, registered-modules): New definitions for
3018 dynamic linking of modules.
3019 (resolve-module): Try to dynamically link the requested module
3020 after failing to load it as Scheme code.
3021
3022 Wed Jan 8 05:50:14 1997 Gary Houston <ghouston@actrix.gen.nz>
3023
3024 * boot-9.scm (getservbyport, getservbyname): remove stray %.
3025
3026 Tue Jan 7 20:02:24 1997 Jim Blandy <jimb@floss.cyclic.com>
3027
3028 * boot-9.scm (and=>): Rename THUNK argument to PROCEDURE, 'cos
3029 that's what it is.
3030
3031 * lineio.scm (make-line-buffering-input-port): Properly test for
3032 the case of an empty buffer list. The old code assumed that '()
3033 was false.
3034
3035 Mon Jan 6 01:13:53 1997 Mikael Djurfeldt <mdj@kenneth>
3036
3037 * boot-9.scm (use-modules): New macro (from Marius Vollmer).
3038 (use-modules <module name> ...) Put the the modules named by
3039 <module name> ... on the use list of the current module.
3040
3041 Sun Jan 5 15:52:59 1997 Jim Blandy <jimb@floss.cyclic.com>
3042
3043 * boot-9.scm (error-catching-loop): Remove message saying that
3044 typing "$" will put you in the debugger. This isn't implemented
3045 yet.
3046
3047 Sun Dec 22 23:27:25 1996 Jim Blandy <jimb@floss.cyclic.com>
3048
3049 * boot-9.scm (delq-all!): Function deleted; delq!'s semantics have
3050 been fixed, so this function is superfluous.
3051 (transform-usage-lambda): Use delq!, not delq-all!.
3052
3053 Tue Dec 17 20:36:45 1996 Marius Vollmer <mvo@zagadka.ping.de>
3054
3055 * boot-9.scm (resolve-module): New optional parameter that
3056 controls whether autoloading is attempted or not. Default is #t.
3057 (process-define-module): Don't autoload the defined module.
3058 (try-module-autoload): Don't autoload the directory modules.
3059
3060 * boot-9.scm (process-define-module): Ensure that the-scm-module
3061 is last in the `uses' list to allow shadowing builtin
3062 bindings. All :use-module options are added in the order they
3063 appear in the arguments but before anything already on the list
3064 (such as the-scm-module).
3065
3066 Wed Dec 11 21:06:05 1996 Gary Houston <ghouston@actrix.gen.nz>
3067
3068 * slib.scm (slib-parent-dir): throw error if #f returned from
3069 %search-load-path.
3070
3071 Sat Nov 30 23:57:28 1996 Tom Tromey <tromey@cygnus.com>
3072
3073 * PLUGIN/greet, PLUGIN/split.sed, PLUGIN/this.configure: Removed.
3074 * Makefile.am, aclocal.m4: New files.
3075 * configure.in: Updated for Automake.
3076
3077 Wed Nov 27 14:16:14 1996 Marius Vollmer <mvo@zagadka.ping.de>
3078
3079 * boot-9.scm (macroexpand-1, macroexpand), slib.scm
3080 (slib:features), r4rs.scm (%load-verbosely): "defined?" is now a
3081 function, use it accordingly.
3082
3083 Thu Nov 21 11:12:10 1996 Jim Blandy <jimb@floss.cyclic.com>
3084
3085 It's an "eval closure", not an "eval thunk." A thunk is a
3086 function of no arguments.
3087 * boot-9.scm (module-type): Rename module field.
3088 (make-module, eval-in-module, make-root-module,
3089 set-current-module): Uses changed.
3090 (module-eval-closure, set-module-eval-closure!,
3091 root-module-closure): Renamed from module-eval-thunk,
3092 set-module-eval-thunk!, root-module-thunk.
3093 (set-current-module): Change uses of *top-level-lookup-thunk* to
3094 *top-level-eval-closure*.
3095
3096 Wed Nov 20 14:45:27 1996 Jim Blandy <jimb@totoro.cyclic.com>
3097
3098 * slib.scm (slib-parent-dir): Use string-length, not length.
3099 (Thanks to Bernard Urban.)
3100
3101 Sat Nov 2 20:00:42 1996 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3102
3103 * boot-9.scm: The debugging evaluator and recording of positions
3104 aren't enabled by default any longer (they are switched on in
3105 debug.scm). But during development we want to have them also
3106 *inside* boot-9.scm. Therefore, two lines are added at the
3107 beginning of boot-9.scm to enable these.
3108
3109 Call `provide' so that `records' are included among the
3110 `*features*'.
3111
3112 The scheme for saving the stack has been adjusted: save-stack is
3113 now commonly available for saving the stack. Calling `save-stack'
3114 sets a flag `stack-saved?' which prevents overwriting the stack.
3115 `stack-saved?' is reset at `abort'.
3116
3117 Spelling correction: seperate --> separate.
3118
3119 Removed `:'s that had creeped into some comments.
3120
3121 The repl now doesn't print #<unspecified> results any longer
3122 If the user wants to see this, he can do
3123 (assert-repl-print-unspecified #t) in his startup file.
3124
3125 The user now gets a friendly message instead of a backtrace at
3126 error.
3127
3128 Added `before-read-hook'.
3129
3130 Load module (ice-9 emacs) if option `-e' was specified.
3131
3132 (provide): New function.
3133
3134 (error): Save stack at entry, so that Guile entrails won't show up
3135 in backtraces.
3136
3137 (backtrace): New function.
3138
3139 (save-stack): Can now take arbitrary number of stack narrowing
3140 specifier pairs. The first specifier in a pair controls inner
3141 border, the second the outer border. A number means cut that
3142 number of frames, a procedure object means cut until that object
3143 is found in operator position in a frame.
3144
3145 * debug.scm: Enable debugging evaluator and recording of positions
3146 by default.
3147
3148 * slib.scm (slib:load): Adapt to the new behavior of
3149 primitive-load: It doesn't any longer try both with and without
3150 ".scm" extension. (We don't want to use %search-load-path here.)
3151
3152 (implementation-vicinity): New function. slib requires it
3153
3154 (library-vicinity): Updated.
3155
3156 Load "require.scm" in the library-vicinity.
3157
3158 (install-require-vicinity, install-require-module): New functions.
3159
3160 Mon Oct 28 17:56:29 1996 Jim Blandy <jimb@floss.cyclic.com>
3161
3162 * boot-9.scm (load-from-path): New function.
3163
3164 * boot-9.scm (try-load, basic-try-load, try-load-module,
3165 try-load): Deleted. I don't think they're being used.
3166
3167 * Makefile.in (scm_files): Add r4rs.scm and test.scm to this list,
3168 so they'll get distributed.
3169
3170 Get Guile to be a little less chatty by default. The new user
3171 should see as little clutter as possible.
3172 * r4rs.scm (%load-verbosely): Make this #f by default.
3173 * boot-9.scm (scm-repl-verbose): Make this #f by default.
3174 (scm-style-repl): Don't run 'pk' on the value passed to quit.
3175
3176 * r4rs.scm: New file.
3177 * boot-9.scm: Load r4rs.scm, first thing.
3178 (OPEN_READ, OPEN_WRITE, OPEN_BOTH, *null-device*, open-input-file,
3179 open-output-file, open-io-file, close-input-port,
3180 close-output-port, close-io-port, call-with-input-file,
3181 call-with-output-file, with-input-from-port, with-output-to-port,
3182 with-error-to-port, with-input-from-file, with-output-to-file,
3183 with-error-to-file, with-input-from-string, with-output-to-string,
3184 with-error-to-string, the-eof-object): Definitions moved to
3185 r4rs.scm. Not all of them are R4RS, but those that are use those
3186 that are not.
3187 (load, %load-verbosely, %load-announce): Moved, along with code to
3188 set %load-hook, to r4rs.scm.
3189
3190 * test.scm: New file.
3191
3192 * boot-9.scm (integer?): Definition deleted, in favor of the one
3193 present in libguile (which used to be called int?). I have no
3194 idea why integer? didn't just call int? to begin with.
3195
3196 * boot-9.scm (<, <=, =, >, >=): Definitions in terms of <?, <=?,
3197 =?, >?, and >=? deleted; they're defined that way by libguile now.
3198
3199 * boot-9.scm (load): Simplified; primitive-load does most of this
3200 work now.
3201 (%load-announce-win): Removed; no longer used. Set %load-hook to
3202 call %load-announce.
3203
3204 Sun Oct 27 07:47:03 1996 Gary Houston <ghouston@actrix.gen.nz>
3205
3206 * boot-9.scm (stat:dev, stat:ino, stat:mode, stat:nlink, stat:uid,
3207 stat:gid, stat:rdev, stat:size, stat:atime, stat:mtime,
3208 stat:ctime, stat:blksize, stat:blocks) accessor functions for stat
3209 components.
3210 (file-is-directory?): use stat:type.
3211
3212 Fri Oct 25 03:34:47 1996 Jim Blandy <jimb@floss.cyclic.com>
3213
3214 * boot-9.scm (%read-sharp): Don't recognize the `#!' syntax here;
3215 that's now taken care of in libguile, and in a way compatible with
3216 SCSH (which this isn't).
3217
3218 Mon Oct 21 18:52:36 1996 Jim Blandy <jimb@totoro.cyclic.com>
3219
3220 * boot-9.scm: Formatting tweaks.
3221
3222 Fri Oct 18 01:03:08 1996 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
3223
3224 * boot-9.scm (handle-system-error): Added hooks before-error-hook,
3225 after-error-hook, before-backtrace-hook and after-backtrace-hook
3226 to the error handler. E.g.: fancy emacs support could plug into
3227 these.
3228 (save-stack): New function. The stack is now made differently
3229 depending on the stack id. (The motivation is to make a better
3230 choice regarding what stack frames to present to the user.)
3231 (error-catching-loop): Stack handling code moved outside into
3232 save-stack.
3233
3234 Thu Oct 17 20:33:08 1996 Gary Houston <ghouston@actrix.gen.nz>
3235
3236 * Makefile.in (scm_files): add expect.scm.
3237
3238 * expect.scm: new file ported from guile-iii.
3239
3240 * boot-9.scm: remove handle-system-error, after moving the code into
3241 error-catching-loop.
3242 Don't set 'throw-handler-default property on error keys.
3243 Just interpret (almost) any throw with 4 args as an error throw.
3244 Delete some try-load stuff that was already commented out.
3245
3246 Second thoughts, keep handle-system-error but call it from
3247 error-catching-loop.
3248
3249 Tue Oct 15 17:07:20 1996 Jim Blandy <jimb@floss.cyclic.com>
3250
3251 * boot-9.scm: Doc fixes.
3252 (make-module): Rework for readability.
3253 (make-root-module, make-scm-module): USES argument to make-module
3254 should be '(), not #f.
3255
3256 * boot-9.scm (try-load): %sys-load-path has been renamed to
3257 primitive-load-path; adjust call here.
3258
3259 Tue Oct 15 14:25:01 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
3260
3261 * boot-9.scm (signal-handler): Bugfix: Moved the recording of
3262 the stack to the correct place: when it is decided to generate an
3263 error-signal.
3264
3265 Mon Oct 14 22:20:30 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
3266
3267 * boot-9.scm (error-catching-loop, signal-handler,
3268 handle-system-error): Backtracing now works for signals aswell;
3269 Backtracing mechanism can now identify the stack root created by
3270 start-stack so that the user isn't exposed to system stack frames.
3271
3272 Mon Oct 14 06:05:42 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
3273
3274 * Makefile.in: Added threads.scm.
3275
3276 Mon Oct 14 04:21:51 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
3277
3278 * debug.scm (make-enable, make-disable): Simplified.
3279
3280 * boot-9.scm: Renamed %%throw-handler-default -->
3281 throw-handler-default.
3282 ((handle-system-error key . arg-list)): Changed the way errors are
3283 reported.
3284 ((scm-style-repl)): Wrap up the call to eval in a start-stack
3285 acro.
3286 ((error-catching-loop thunk)): Introduce a lazy-catch into
3287 error-catching-loop so that the stack can be captured.
3288
3289 Thu Oct 10 22:27:32 1996 Jim Blandy <jimb@totoro.cyclic.com>
3290
3291 * mapping.scm (hash-table-mapping): Explicitly request that
3292 make-vector fill new vectors with '(); this will make it easier to
3293 port Guile Scheme code to other Schemes.
3294 * boot-9.scm (make-print-style, make-print-table): Same.
3295
3296 Sun Oct 6 03:54:59 1996 Gary Houston <ghouston@actrix.gen.nz>
3297
3298 * boot-9.scm (load): rewritten again.
3299 Append "." to the default %load-path.
3300 (feature?): new function: checks for a symbol in the features list.
3301 (module-local-variable): remove apparently useless (caddr (list m v
3302 ...))
3303 (%load-announce): minor formatting change.
3304 (file-exists?): use access? if posix is featured.
3305 (file-is-directory?): use stat if i/o-extensions is featured.
3306 (try-module-autoload module-name): use file-exists? before
3307 file-is-directory?
3308
3309 Sat Oct 5 18:54:03 1996 Mikael Djurfeldt <mdj@kenneth>
3310
3311 * boot-9.scm: Added conditional loading of threads.scm.
3312
3313 * threads.scm: New file. Modified from the Cygnus-r0.3
3314 distribution.
3315
3316 * boot-9.scm (error-catching-loop): Added handling of key
3317 `switch-repl'.
3318
3319 * boot-9.scm: Name change %%bad-throw --> bad-throw.
3320
3321 Wed Oct 2 23:38:44 1996 Jim Blandy <jimb@totoro.cyclic.com>
3322
3323 * boot-9.scm (make-record-type, record-constructor): Don't assume
3324 the empty list is false when parsing the argument list.
3325
3326 Mon Sep 30 22:15:50 1996 Jim Blandy <jimb@totoro.cyclic.com>
3327
3328 * boot-9.scm (signal-handler): Clean up logic.
3329
3330 * boot-9.scm (load): Assume %load-path is always bound.
3331
3332 Sat Sep 28 00:15:37 1996 Gary Houston <ghouston@actrix.gen.nz>
3333
3334 * boot-9.scm (error): replace another throw with scm-error. Throw
3335 to 'misc-error instead of 'error (no need to distinguish these.)
3336 Don't set up 'error as a key.
3337 Set up regex-error as a key, if regex is available.
3338 (signal-handler): use scm-error, not throw.
3339
3340 (%try-load, try-load-with-path, %load, load-with-path,
3341 basic-try-load-with-path, basic-load-with-path,
3342 try-load-module-with-path,load-module-with-path): deleted, since
3343 they seem redundant.
3344 (try-load): define using %try-load, not try-load-with-path.
3345 (load): rewritten. load tries to open the file directly and
3346 with a .scm extension before searching the library directories
3347 (should "." be added to %load-path? then load could still open
3348 directly files starting with "/").
3349 (try-module-autoload): use load, not load-with-path.
3350 (%load-indent): deleted, -2 was causing errors.
3351
3352 (%read-sharp): use port-line, not line-number.
3353
3354 Fri Sep 27 16:23:51 1996 Jim Blandy <jimb@totoro.cyclic.com>
3355
3356 * boot-9.scm (%%bad-throw): Delete definition. 1) It's very
3357 straightforward to provide the equivalent functionality using
3358 (catch #t ...), so there's no need for the extra complexity. 2)
3359 Outside the context of a read-eval-print loop (which Guile should
3360 not require) it's not clear we should do anything more complicated
3361 than print an error and exit; the user or REPL can establish
3362 something better if it wants. 3) In that case, it's much more
3363 robust to just do it in the C code.
3364
3365 Tue Sep 24 06:53:04 1996 Gary Houston <ghouston@actrix.gen.nz>
3366
3367 * boot-9.scm (%try-load): define using primitive-load. Previously
3368 %try-load itself was the primitive.
3369 (load-with-path): use scm-error instead of %load-announce-lossage.
3370 Errors are thrown to 'misc-error instead of 'could-not-load.
3371 (%load-announce-lossage): deleted.
3372
3373 Mon Sep 23 00:16:31 1996 Mikael Djurfeldt <mdj@kenneth>
3374
3375 * boot-9.scm (warn, scm-style-repl): Use C printer instead of `print'.
3376 (make-record-type type-name fields): Temporarily remove support
3377 for printing of records (not possible yet with C printer).
3378
3379 Fri Sep 20 00:24:27 1996 Gary Houston <ghouston@actrix.gen.nz>
3380
3381 * boot-9.scm (file-exists?, file-is-directory): catch only
3382 system-error, not every kind of error.
3383 (scm-error): new procedure.
3384
3385 Thu Sep 19 16:02:46 1996 Jim Blandy <jimb@totoro.cyclic.com>
3386
3387 * boot-9.scm: Formatting tweaks.
3388
3389 Wed Sep 18 09:07:37 1996 Gary Houston <ghouston@actrix.gen.nz>
3390
3391 * boot-9.scm (%%handle-system-error key): remove the code for
3392 SCM-style errors. handle the case that an unexpected number
3393 of args are supplied.
3394 (%%system-errors): removed.
3395 (error): redefine using a throw with key and 4 args.
3396 ('error): associate 'error, 'error-signal keys with
3397 %%handle-system-error.
3398 (%%default-error-handler): removed.
3399 (signal-handler): throw with 4 args and use the error-signal key.
3400 Create an error message instead of using numerical codes.
3401 (%%bad-throw): call error instead of throw if key not found.
3402
3403 Tue Sep 17 04:11:28 1996 Gary Houston <ghouston@actrix.gen.nz>
3404
3405 * boot-9.scm: initialize new error keys (see libguile/ChangeLog).
3406 (%%handle-system-error key): check subr is not #f before printing.
3407 Recognize %s (embed an argument using "display") and
3408 %S (embed an argument using "write").
3409
3410 Sun Sep 15 03:55:35 1996 Gary Houston <ghouston@actrix.gen.nz>
3411
3412 * boot-9.scm (%%handle-system-error key): set args and rest to
3413 the empty list if they are #f.
3414 Initialize out-of-range as an error key.
3415
3416 Sat Sep 14 03:41:15 1996 Gary Houston <ghouston@actrix.gen.nz>
3417
3418 * PLUGIN/REQ: remove the "ice-9 lgh" line which causes a cycle.
3419
3420 * boot-9.scm: remove leading %% from references to '%%system-error.
3421 (%%handle-system-error): don't pass all the thrown arguments when
3422 aborting, just the key and subr.
3423 Remove the code to "Install default handlers for built-in errors."
3424 Remove the definition of the syserror procedure.
3425 Associate 'numerical-overflow with default handler.
3426
3427 Fri Sep 13 04:58:11 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
3428
3429 * boot-9.scm: Name change: value-ref --> local-ref
3430 resolved-ref --> nested-ref Motivation: conformance to the other
3431 dictionary operators: list-ref operates on list, vector-ref
3432 operates on vector, nested-ref operates on nested namespace,
3433 local-ref operates on the local nested namespace.
3434
3435 Sat Sep 7 06:44:47 1996 Gary Houston <ghouston@actrix.gen.nz>
3436
3437 * boot-9.scm (%%handle-system-error): recognise errors thrown
3438 by lgh-error (fill-message etc.)
3439 (fill-message): check first whether args is null.
3440 (fill-message): bug fix and check that args is a list.
3441
3442 Thu Sep 5 11:33:41 1996 Jim Blandy <jimb@floss.cyclic.com>
3443
3444 * boot-9.scm: %load-path is initialized in C code now.
3445 (implementation-vicinity, parse-path): Deleted, along with code to
3446 initialize %load-path.
3447
3448 * boot-9.scm (in-vicinity): If the vicinity doesn't end with a
3449 "/", use one to separate it from the file.
3450
3451 Thu Aug 29 23:05:11 1996 Thomas Morgan <tmorgan@gnu.ai.mit.edu>
3452
3453 * boot-9.scm (%load-path): Add the site directory.
3454 Add the directory named after the version number.
3455 Prepend the version number to the other directories in the path.
3456 Simplify by mapping the common prefix onto each item.
3457 * Makefile.in (datadir, pkgdatadir, pkgverdatadir, subpkgdatadir,
3458 sitedatadir): New definitions.
3459 (libparent, libdir, install_path): Replaced by above.
3460 (install): Create the above directories.
3461 Put the source files into subpkgdatadir.
3462 (uninstall): Remove the above directories.
3463
3464 Thu Aug 29 21:48:47 1996 Jim Blandy <jimb@floss.cyclic.com>
3465
3466 Don't use the PLUGIN system to gather information for the
3467 Makefile's distribution and installation targets; just put it all
3468 in the Makefile directly.
3469 * PLUGIN/this.configure (scm_files, aux_files): Remove sections
3470 for these.
3471 * configure.in: Remove code that gets and substitutes scm_files and
3472 aux_files.
3473 * Makefile.in (scm_files, aux_files): Write out the list of files
3474 here, where people expect to find them.
3475
3476 Fri Aug 23 06:44:36 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
3477
3478 * boot-9.scm: Preliminary solution: optionally load the debug
3479 module. Changed "gls" to "guile1.0b3".
3480
3481 * debug.scm: New file: debug extensions.
3482
3483 Wed Aug 21 13:06:56 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
3484
3485 * boot-9.scm (print-vector): Renamed weak-hash-table? -->
3486 weak-key-hash-table?. (Again!)
3487
3488 Tue Aug 20 07:31:39 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
3489
3490 * boot-9.scm (print-vector, macro-table, xformer-table):
3491 Renamed weak-hash-table --> weak-key-hash-table.
3492
3493 * poe.scm (funcq-memo): Renamed weak-hash-table -->
3494 weak-key-hash-table.
3495
3496 Sat Aug 3 06:16:35 1996 Gary Houston <ghouston@actrix.gen.nz>
3497
3498 * boot-9.scm (*null-device*): global constant from goonix.
3499 (move->fdes): adjusted for boolean primitive-move->fdes. return
3500 the modified port, always set revealed count to 1 (SCSH compatible).
3501 (release-port-handle port): from goonix (SCSH compatible).
3502 (%open-file): removed.
3503 (open-input-file, open-output-file, file-exists?, file-is-directory?):
3504 modified for open-file change (does not return #f).
3505
3506 Thu Aug 1 02:52:42 1996 Jim Blandy <jimb@totoro.cyclic.com>
3507
3508 * Makefile.in (dist-dir): New target for new dist system.
3509 (manifest): Deleted.
3510 * PLUGIN/this.configure (aux_files): Removed PLUGIN; it's a
3511 directory, and needs special treatment in the dist-dir target.
3512
3513 Thu Aug 1 09:00:21 1996 Gary Houston <ghouston@actrix.gen.nz>
3514
3515 * boot-9.scm: remove the wrappers for '%' system primitives,
3516 now that they throw errors directly.
3517 remove make-simple-wrapper and similar functions.
3518 protect a call to getenv which may now throw an exception.
3519
3520 Wed Jul 31 23:44:42 1996 Gary Houston <ghouston@actrix.gen.nz>
3521
3522 * boot-9.scm (false-if-exception): new macro.
3523
3524 Fri Apr 19 13:53:08 1996 Tom Lord <lord@beehive>
3525
3526 * The more things change...
3527
3528