* boot-9.scm (try-load-module): New procedure. Broken out from
[bpt/guile.git] / ice-9 / ChangeLog
CommitLineData
deea77eb
MD
11999-03-18 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2
3 * session.scm (system-module): New procedure. Used to switch a
4 module between system and user state.
5
2251c7a4
MD
61999-03-16 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
7
8 * session.scm (apropos-internal): Rewritten using hash-fold.
9
10 * emacs.scm, session.scm, slib.scm): Added :no-backtrace in module
11 definition.
12
6ee350ad
MD
131999-03-14 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
14
15 * boot-9.scm (make-record-type): Use `set-struct-vtable-name!' to
16 associate a name to the record type descriptor so that the object
17 system can create a wrapper class for it.
18
88124126
MD
191999-03-12 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
20
21 Improvement of backtraces: Introduces a new stack narrowing
22 specifier, #t, for the inner cut. If the inner cut is specified
23 by #t, `make-stack' will throw away inner stack frames (most
24 recent calls on call chain) up to but excluding the first user
25 stack frame encountered.
26
27 This specifier is now used in `save-stack' so that the call
28 `(save-stack)' will get the new behaviour. [It is recommended that
29 any error reporting functions written by the user have this call
30 on the outermost expression level (i.e. as a member of the lambda
31 list).]
32
33 Modules are partitioned into "user" and "system" modules. [I know
34 that some names used here are silly, but I don't have more time to
35 spend on a better solution, especially considering that the module
36 system will be replaced. But if people have better ideas, then
37 please tell me!]
38
39 System modules are created by adding :no-backtrace among the
40 define-module switches:
41
42 (define-module (foo)
43 :no-backtrace)
44
45 Modules which doesn't have the :no-backtrace specifier are user
46 modules.
47
48 A stack frame is classified as a user frame if it has source code
49 associated with it and if this source code can be proven to come
50 from a user module. If it can be proven to come from a system
51 module it is a system frame.
52
53 Frames which can't be classified, e.g. application frames, are cut
54 away if they occur between system frames, but are left on the
55 stack if they occur between the last system frame and the first
56 user frame encountered. (Note that the first user frame
57 encountered is the last user code being evaluated!)
58
59 In some cases the system part of the call chain is introduced by
60 frames which should but can't be proven to be system frames. The
61 following workaround has been implemented: The cutting proceeds
62 over application frames where the operator is marked by the
63 `system-procedure' property. (This has been used to cut away
64 generic function dispatch code in the object system.)
65
66 * boot-9.scm (set-system-module!): New procedure: Set system/user
67 status of a module.;
68 Mark `the-root-module' and `the-scm-module' as system modules.
69 (process-define-module): Add new keyword :no-backtrace.
70
71 * boot-9.scm (environment-module): Bugfixed.
72 (set-module-eval-closure!): Add a pointer back from the eval
73 closure to the module.
74
75 * emacs.scm (emacs-load): Reset port filename after transfer.
76
41f50369
MD
771999-03-03 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
78
79 * slib.scm (make-random-state): Added for compatibility.
80
fcdd6672
MS
811999-02-16 Maciej Stachowiak <mstachow@alum.mit.edu>
82
83 * optargs.scm (lambda*): Handle empty argument lists properly.
84
8d21a2ff
JB
851999-02-15 Jim Blandy <jimb@savonarola.red-bean.com>
86
87 Fix from Russ McManus:
88 * getopt-long.scm (parse-option-spec): Store 'optional as the
89 value-required? field for options that take optional values.
90 (process-short-option): Grab a value for the option when it takes
91 either an optional or required value.
92
deaceb4e
JB
931999-02-12 Jim Blandy <jimb@savonarola.red-bean.com>
94
95 * getopt-long.scm: Remove debugging calls to `pk'.
96
4ca48ad4
JB
97 * getopt-long.scm: Return list of ordinary arguments as the value
98 of the '() key, not `rest'.
99
deaceb4e
JB
100 A new argument-processing package from Russ McManus.
101 * getopt-long.scm: New file.
102 * Makefile.am (ice9_sources): Added getopt-long.scm.
103 * Makefile.in: Regenerated.
104
08394899
MS
1051999-02-09 Maciej Stachowiak <mstachow@alum.mit.edu>
106
107 * optargs.scm: New file.
108 * Makefile.am (ice9_sources): Add optargs.scm here. Makefile.in
109 not regenerated because I don't have the right version of Automake.
deaceb4e 110
2e132553
JB
1111999-02-06 Jim Blandy <jimb@zwingli.cygnus.com>
112
113 * and-let*.scm: New file, from Michael Livshin.
114 * Makefile.am (ice9_sources): Add and-let* here.
115 * Makefile.in: Regenerated.
116
65a5dccb
MD
1171999-01-11 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
118
119 * slib.scm (install-require-module): Fixed the kludge which loads
120 the slib catalog: Doesn't anylonger assume that the feature tested
121 for isn't loaded.
122
333a4791
JB
1231998-12-14 Jim Blandy <jimb@zwingli.cygnus.com>
124
125 * Makefile.in: Regenerated.
126
45a02a29
MD
1271998-12-14 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
128
129 * boot-9.scm (process-define-module): Reverted the change of
130 1998-11-23 which caused loading of object code if :use-module was
131 applied to the module itself.
132
e7b6c834
MD
1331998-12-11 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
134
135 * Makefile.am: Removed setf.scm.
136
137 * setf.scm: Removed. 1. It was buggy. 2. It was unschemey.
138 (These shortcomings were my fault.)
139
bf3c93d1
MD
1401998-12-10 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
141
9705d5c2 142 * boot-9.scm (environment-module): New procedure.
bf3c93d1 143
bc9a9137
MD
1441998-12-07 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
145
146 * Makefile.am: Added setf.scm.
147
1481998-12-05 Christian Lynbech <chl@tbit.dk>
149
150 * setf.scm: New file. Adds the new forms `setf!' and `setter'
151 which implements generalized references a la Common LISP.
152
71225060
MD
1531998-12-02 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
154
155 * boot-9.scm (process-define-module): Added new specifier
156 :autoload MODULENAME BINDINGS to the define-module form.
157 The autoload specifier tells the module system to load the module
158 MODULENAME at the first occasion that any variable with its name
159 among BINDINGS is referenced.
160 (make-autoload-interface): New procedure: Constructs a stand-in
161 for the public interface for the module to be autoloaded.
162
3b3085c6
MD
1631998-12-01 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
164
165 * boot-9.scm (*suppress-old-style-hook-warning*): Set this to #t
166 if you don't want the old style hook warnings.
167
49e5d550
MD
1681998-12-01 Christian Lynbech <chl@tbit.dk>
169
170 * boot-9.scm (try-using-libtool-name): Fix check on dlname to make
171 sure that it isn't empty, as it is when we are only buidling
172 static libraries.
173
afae5cbd
MD
1741998-11-27 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
175
176 * session.scm (arity): New procedure.
177
3763ac3c
MD
1781998-11-26 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
179
180 * boot-9.scm: Use run-hook instead of run-hooks everywhere.
181
7a79c6b4
MD
1821998-11-26 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
183
184 * boot-9.scm (run-hooks, add-hook!, remove-hook!): Added temporary
185 code for backward compatibility until people have had time to
186 adapt to the new hooks.
187
a56eeb46
MD
1881998-11-23 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
189
190 * boot-9.scm (beautify-user-module!): Beautify also if public
191 interface is set to the module itself. In this way we can use
192 beautify-user-module! to beautify a module prepared for object
193 code.
194 (process-define-module): Special case: Try to load object code as
195 well if a module does :use-module on itself.
196
197 * boot-9.scm: Bugfix: Since boot-9.scm is now loaded from
198 invoke_main_func, we can no longer be sure that all modules have
199 been registered when boot-9.scm is loaded.
200 (register-modules): New function: Register and tag modules
201 registered by scm_register_module_xxx since last call to this
202 function. Modules are tagged with the dynamic object passed as
203 argument. (Already linked modules should be tagged with #f.)
204 (init-dynamic-module, link-dynamic-module): Call register-modules
205 first to register linked modules.
206
207 * boot-9.scm (init-dynamic-module): Remove module from
208 registered-modules as soon as possible in case we are recursively
209 invoked; Set public interface before doing the dynamic-call.
210
211 * boot-9.scm (map-in-order): Removed (replaced by scm_serial_map).
212 (abort-hook, before-error-hook, after-error-hook,
213 before-backtrace-hook, after-backtrace-hook, before-read-hook,
214 after-read-hook, exit-hook): Make hooks with `make-hook'.
215
216 * boot-9.scm: Make hooks first class citizens and make them easier
217 to use from C:
218 (make-hook, add-hook!, remove-hook!, run-hooks): Moved to
219 libguile/feature.c.
7e414627
MD
220
221 * boot-9.scm: Added warnings about bindings used in
222 libguile/modules.c: the-module, set-current-module,
a56eeb46 223 make-modules-in, beautify-user-module!, module-eval-closure.
7e414627 224
dc61592f
MD
2251998-11-21 Mikael Djurfeldt <mdj@kenneth>
226
227 * boot-9.scm (the-environment): New special form: Returns an
228 object representing the current local evaluation environment.
229 This object can be used in `local-eval' and `defined?'.
230
7398c2c2
MD
2311998-11-13 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
232
233 * boot-9.scm (collect): New syntax. Similar to begin but returns
234 a list of the results of all forms in the sequence instead of the
235 result of the last form.
236
6162a00d 2371998-11-10 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
e586be78 238
00f4b2e8
MD
239 * boot-9.scm (values, call-with-values): Moved here from
240 syncase.scm.
241
242 * syncase.scm (values, call-with-values): Moved to boot-9.scm.
243
e586be78
MD
244 * boot-9.scm (readline-options, readline-enable, readline.disable,
245 readline-set!: New options interface.
246
6162a00d
MD
247 * readline.scm (readline-port): Use readline-options-interface.
248
4fdf8b2c
MD
2491998-11-05 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
250
251 * boot-9.scm: Set the repl start module in `top-repl' instead of
252 at the end of boot-9.scm.
253
0b6925fe
MD
2541998-11-01 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
255
256 * emacs.scm (format): Bugfix: Handle multiple arguments
257 correctly. (Thanks to Thien-Thi Nguyen.)
258
e4eae9b1
MD
2591998-11-01 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
260
261 * boot-9.scm (exit-hook): New hook: Is run at the very end of an
262 interactive session.
263 (top-repl): Run exit-hook on exit.
264
265 * readline.scm (readline-port): Maybe read history; Maybe write
266 history at exit (add to exit-hook).
267
cad4d45b
MD
268Fri Oct 30 15:15:37 1998 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
269
270 * readline.scm (make-readline-port): Bugfixed last change...
271
24bf9166
MD
2721998-10-28 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
273
274 * readline.scm (make-readline-port): Don't set prompt to "... " if
275 read line was empty.
276
f4be1689
JB
2771998-10-19 Jim Blandy <jimb@zwingli.cygnus.com>
278
1f6fe22a
JB
279 * boot-9.scm, debug.scm, expect.scm, hcons.scm, lineio.scm,
280 r4rs.scm, slib.scm, threads.scm: Update copyright years.
281
33432c79
JB
282 * getopt-gnu-style.scm, slib.scm: Add copyright notice.
283
284 Talked to Stallman. Actually, the syntax-case copyright is no
285 problem. Duh.
286 * Makefile.am (ice9_sources): Revert last change.
287 * syncase.scm, psyntax.pp, psyntax.ss: Added again.
288 * Makefile.in: Regeneretade.
289
f4be1689
JB
290 * boot-9.scm: Don't assume that this file is loaded just before
291 entering a read-eval-print loop. Turn code to load (ice-9 emacs)
292 into...
293 (load-emacs-interface): New function.
294 (top-repl): Call it, if use-emacs-interface is defined and true.
295 At this point, we *do* know we're about to enter a REPL.
296
297 We can't include Kent Dybvig's syntax-case macro expander in the
298 core Guile distribution, because we don't have copyright
299 assignments for this code. We can certainly distribute them as a
300 separate package, but Guile should be FSF code.
301 * syncase.scm, psyntax.pp, psyntax.ss: Removed.
302 * Makefile.am (ice9_sources): Removed syncase.scm, psyntax.pp, and
303 psyntax.ss.
304 * Makefile.in: Regenerated.
305
306 * Makefile.am (ice9_sources): Add getopt-gnu-style.scm.
307 * Makefile.in: Regenerated.
308
c8f11b97
MD
3091998-10-18 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
310
311 * boot-9.scm: Added extended read syntax for byte vectors #y(...)
312 and short vectors #h(...).
313
bb2a4165
JB
3141998-10-14 Jim Blandy <jimb@zwingli.cygnus.com>
315
316 * calling.scm (excursion-function-syntax): Use a sequence of
317 set!'s, not a single multi-variable set!; we removed support for
318 that syntax a long time ago. (Thanks to Shuji Narazaki.)
319
c8983d6a
JB
3201998-10-12 Jim Blandy <jimb@zwingli.cygnus.com>
321
94e3e95e 322 * r4rs.scm (OPEN_READ, OPEN_WRITE, OPEN_BOTH): Don't bother
c8983d6a
JB
323 testing software-type here. That's the least of our Windows
324 porting issues, and it's done wrong anyway.
325
77052259
JB
3261998-10-09 Jim Blandy <jimb@zwingli.cygnus.com>
327
98330fd2
JB
328 * boot-9.scm (read-path-list-notation-warning): New function:
329 print a warning the first time we see `#/' notation.
330
77052259
JB
331 * q.scm (sync-q!, q?, q-remove!, q-push!, enq!): Lots of bugs, and
332 (eq? #f '()) assumptions. Make functions that aren't documented
333 to return anything else return the queue itself. (Bug report from
334 Michael Livshin --- thanks!)
335
c9dd46af
MD
3361998-08-21 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
337
338 * debug.scm (trace-entry, trace-exit): Removed re-enabling of
339 trace flag.
340
341 * boot-9.scm (make-options): Bugfix: Changed pair? --> list? in
342 order to allow the empty list as arg.
343 (error-catching-loop): Use `with-traps' to create a dynamic
344 context with traps enabled.
345
5ef4ef4e
MD
3461998-08-19 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
347
348 * boot-9.scm: Removed (ice-9 regex) from use-list of (guile)
349 module.
350 (try-using-libtool-name): Removed dependency on (ice-9 regex).
351
325f42e0
MD
3521998-08-15 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
353
354 * boot-9.scm: Make the root module use (ice-9 regex) if
355 available. The dynamic linking facilities in boot-9.scm are
356 currently dependent upon regular expressions. My change of
357 1998-07-14 removed (ice-9 regex) from the use-list of the root
358 module and thereby destroyed dynamic linking.
359
0dcbc17a
JB
3601998-07-29 Jim Blandy <jimb@zwingli.cygnus.com>
361
362 * Makefile.in: Regenerated using the last public version of
363 automake, not the hacked Cygnus version.
364
1f5ae2fd
JB
3651998-07-28 Jim Blandy <jimb@zwingli.cygnus.com>
366
367 * Makefile.in: Regenerated, after removing Totoro kludge.
368
1a0106ef
JB
3691998-07-28 Jim Blandy <jimb@totoro.red-bean.com>
370
371 * getopt-gnu-style.scm: New file. (Thanks to Russ McManus.)
372
e99cbcd6
JB
3731998-07-26 Jim Blandy <jimb@zwingli.cygnus.com>
374
375 * Makefile.in Rebuilt, for config changes in parent dir.
376
6f4d9622
MD
3771998-07-21 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
378
379 * readline.scm (make-readline-port): Set prompt string to "... "
380 after first read line. (Thanks to Richard Polton.)
381
3ec4ec9a
JB
3821998-07-19 Jim Blandy <jimb@zwingli.cygnus.com>
383
384 * lineio.scm (make-line-buffering-input-port): Don't use
385 ungetc-char-ready?, since we don't provide that function any
386 more. The unread-string function doesn't interact properly with
387 any of the standard I/O functions anyway. (Thanks to Andrew
388 Archibald.)
389
390 * hcons.scm (hashq-cons-assoc): Don't assume the empty list is
391 false. Return false when we cannot find a matching entry in the
392 list. (Thanks to Andrew Archibald.)
393
a0cc0a01
MD
3941998-07-16 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
395
396 * boot-9.scm (export, export-syntax): New special forms: Export
397 bindings from a module. `(export name1 name2 ...)' can be used at
398 the top of a module (after `define-module') to specify which names
399 should be exported. It can be used as an alternative to
400 `define-public'. `export-syntax' works equivalently to `export'
401 but is intended for export of syntactic keywords.
402 (Thanks to Thien-Thi Nguyen.)
403
39bc9948
MD
4041998-07-15 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
405
406 * boot-9.scm: Renamed module `(guile-repl)' --> `(guile-user)'.
407
13e341bb
MD
4081998-07-14 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
409
ae996c08
MD
410 * boot-9.scm: Let the user start in module `(guile-repl)' instead
411 of module `(guile)'. Also make sure that `(guile-repl)' uses
412 suitable modules. This change improves Guile stability
413 substantially since bindings will only be copied from the root
414 module: If the user redefines builtins in `(guile-repl)' it won't
415 affect the internal operation of Guile itself.
13e341bb 416
c6775c40
MD
4171998-06-19 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
418
419 * boot-9.scm (load-module): When loading files from within files
420 themselves being loaded: Use the directory path of the file being
421 loaded as root for relative filenames. (After suggestion by
422 Steven G. Johnson.)
423
ef0d04e5
MD
4241998-06-15 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
425
426 * emacs.scm (emacs-load): New feature: Eval in specified module.
427
4ffd142c
MD
4281998-06-14 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
429
430 * readline.scm: Typo in regex module name.
431
edd9ac21
MD
4321998-06-13 Mikael Djurfeldt <mdj@barbara.nada.kth.se>
433
434 * readline.scm (apropos-completion-function): regexp-quote text to
435 be completed.
436
a66c53a8
MD
4371998-06-11 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
438
edd9ac21 439 * debug.scm, emacs.scm: Bugfix: Treat `the-last-stack' as a fluid.
a66c53a8 440
d38a6802
MD
4411998-06-09 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
442
443 * boot-9.scm: Check that (current-input-port) is a tty before
444 enabling readline. (Thanks to Michael N. Livshin.)
445
cf266109
MD
4461998-06-07 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
447
448 * boot-9.scm (use-syntax): Turned into a macro inorder to be
449 similar in use to `use-modules'.
450 Example: (use-syntax (ice-9 syncase)) will 1. load the module
451 (ice-9 syncase), and, 2. install the procedure `syncase' as eval
452 transformer.
453 (internal-use-syntax): New procedure.
454 (process-define-module): Use `internal-use-syntax'.
455
67da6c57
MD
4561998-05-19 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
457
458 * Makefile.am (ice9_sources): Add emacs.scm.
459
1b558afd
MD
4601998-05-13 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
461
462 * readline.scm: Use the new readline facilities: Add the
463 possibility to control input and output ports; Add apropos
464 completion.
465
466 * boot-9.scm: Antirevert Jim's readline code which he reverted
467 19971027 and adapt it to the current readline interface.
468
469 * boot-9.scm (top-repl): Only enable readline if not using the
470 Emacs interface; Only use repl prompt when using the readline port
471 from repl-read. (We don't want to see it when calling `read'.)
472
473 * boot-9.scm (remove-hook!): Parenthesis bug.
474
f246e585
MD
4751998-05-11 Mikael Djurfeldt <mdj@kenneth>
476
477 * boot-9.scm: Load readline module if readline is present.
478
479 * readline.scm (apropos-completion-function): New procedure:
480 Symbolic completion. (Thanks to Andrew Archibald!)
481
f714ca8e
MD
4821998-04-22 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
483
484 * boot-9.scm (process-define-module): Added keyword use-syntax.
485
3ede541d
MD
4861998-04-19 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
487
488 * nonblocking.scm: Removed. libguile is now inherently
489 nonblocking through the use of scm_internal_select.
490
491 * emacs.scm: Removed use of nonblocking.scm.
492
493 * gwish.scm, gtcl.scm: Removed. tcltk.scm has made these
494 obsolete.
495
608cf70c
MD
4961998-04-15 Mikael Djurfeldt <mdj@nada.kth.se>
497
498 * runq.scm (runq-control): Corrected spelling of enqueue!.
499 (Thanks to Karl M. Hegbloom.)
500
16b8ebbe
MD
5011998-03-30 Mikael Djurfeldt <mdj@nada.kth.se>
502
503 * boot-9.scm: Added new run-time option interface eval-options.
504
abf06c12
MD
5051998-03-28 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
506
507 * boot-9.scm (remove-hook!): New macro. (Thanks to Maciej
508 Stachowiak.)
509
13dc0cae
MD
5101998-01-30 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
511
512 * threads.scm: Added simple error and signal handler.
513 (make-thread, begin-handler): Use this handler. The most
514 important effect of this is that signals get unmasked.
515 Previously, when a signal was thrown signals remained masked
516 (signals get masked when a signal is taken) which influenced other
517 threads.
518
841d28d7
TP
5191998-01-01 Tim Pierce <twp@skepsis.com>
520
521 A better fix to the SLIB identity problem -- thanks to Marius Vollmer.
522 * slib.scm (identity): Unmake public.
523 (slib:eval): Evaluate inside `slib-module'.
524
ad76c8d9
TP
5251997-12-24 Tim Pierce <twp@skepsis.com>
526
249cdba6
TP
527 * boot-9.scm: Doc fix.
528
ad76c8d9
TP
529 * slib.scm (identity): Made public.
530 (home-vicinity): New function (from SLIB/Template.scm).
531
848f2a01
TP
5321997-12-13 Tim Pierce <twp@skepsis.com>
533
f4be1689 534 * boot-9.scm (read-line): Rewritten to call %read-line for
848f2a01
TP
535 improved speed. Minor user-visible changes: the new functions are
536 hardwired to treat the LFD character as signifying end-of-line, so
537 changing `scm-line-incrementors' will no longer affect the
538 behavior of read-line. On platforms which do not represent
539 end-of-line with a LFD character, read-line should behave more
540 like native line-processing facilities, but there is still a ways
541 to go here.
542
8bb7f646
MD
543Sat Nov 29 01:24:46 1997 Mikael Djurfeldt <mdj@kenneth>
544
545 * boot-9.scm (error-catching-loop, save-stack): `the-last-stack'
546 is now a fluid.
547
ebd79f62
TP
5481997-11-28 Tim Pierce <twp@skepsis.com>
549
848f2a01
TP
550 * boot-9.scm (find-and-link-dynamic-module): If a module directory
551 contains a .la file (a libtool support file), attempt to extract
552 the shared library name from that file. If the .la file does not
553 exist, try to link against a .so file. Libtool-generated compiled
554 modules should load more cleanly in Guile now.
ebd79f62
TP
555 (try-using-libtool-name, try-using-sharlib-name): New functions.
556
28d8ab3c
GH
557Sun Nov 9 06:10:59 1997 Gary Houston <ghouston@actrix.gen.nz>
558
559 * boot-9.scm (set-batch-mode?!, batch-mode?): initialize more
560 usefully so they will work from a script.
561
13a7ee16
MV
5621997-10-31 Marius Vollmer <mvo@zagadka.ping.de>
563
564 * boot-9.scm (inherit-print-state): Moved definition to the
565 neighborhood of the record code.
566
930b16c0
JB
567Mon Oct 27 02:05:49 1997 Jim Blandy <jimb@totoro.red-bean.com>
568
569 * boot-9.scm: Revert changes to this file from Oct 23. It turns
570 out to interact badly with the Emacs support and the Tcl/Tk
571 support. It's not a high enough priority at the moment to be
572 worth fixing. I'm leaving the other readline support in, though.
573
3fa5bb75
JB
574Sat Oct 25 14:23:22 1997 Jim Blandy <jimb@totoro.red-bean.com>
575
576 * Makefile.am: Include readline.scm in the list of files to be
577 installed, so Guile can find it for interactive use.
578 * Makefile.in: Regenerated.
579
2e368582
JB
580Thu Oct 23 01:00:33 1997 Jim Blandy <jimb@totoro.red-bean.com>
581
582 Add support for readline function.
583 * readline.scm: New module.
584 * boot-9.scm (repl-reader): New function.
585 (scm-style-repl): Call repl-reader, instead of doing the reading
586 ourselves. Remove repl-report-reset; it was never used for
587 anything.
588 (top-repl): If we've got the readline primitives, then redefine
589 repl-reader to use them.
590 If we've got the readline primitives, import the readline module.
591
592 * ls.scm (ls, lls): Don't assume (eq? #f '()).
593
594Wed Oct 22 18:26:57 1997 Jim Blandy <jimb@totoro.red-bean.com>
595
596 * calling.scm, common-list.scm, ls.scm, q.scm, runq.scm,
597 string-fun.scm: Added copyright notices; reformatted.
598
4bbbcd5c
GH
599Thu Oct 9 05:44:00 1997 Gary Houston <ghouston@actrix.gen.nz>
600
601 * expect.scm: (expect-regexec): new procedure, use it in
602 expect-strings to fix the => syntax under the new regex system.
603 (top): include regex module in define-module statement.
604
605Wed Oct 8 03:16:01 1997 Gary Houston <ghouston@actrix.gen.nz>
606
607 * (error-catching-loop): new local variable "interactive". if
608 #f, abort terminates the process.
609 (set-batch-mode?!, batch-mode?): new closures, defined in
610 error-catching-loop. the names are from scsh.
611
c115b54b
MV
6121997-10-06 Marius Vollmer <mvo@zagadka.ping.de>
613
614 * boot-9.scm (inherit-print-state): If NEW-PORT contains a
615 print-state, throw it away.
616
2e368582 617Fri Oct 3 12:00:00 Mikael Djurfeldt <mdj@nada.kth.se>
9f9aa47b
MD
618
619 * boot-9.scm (struct-layout): Use `vtable-index-layout' instead of
620 `0'.
621
2e368582 622Thu Oct 2 12:00:00 Mikael Djurfeldt <mdj@nada.kth.se>
9f9aa47b
MD
623
624 * boot-9.scm (struct-printer, make-struct-printer,
625 set-struct-printer-in-vtable!, *struct-printer*): Removed.
626 (record-type-vtable, make-record-type): Don't use make-struct-printer.
627 (record-type-vtable): User fields "prpr" (printer is no longer a
628 user field).
629 (record-type-name, record-type-fields): Decreased slot index by
630 one; Use `vtable-offset-user'.
631
2e368582 632Thu Oct 2 12:00:00 Marius Vollmer <mvo@zagadka.ping.de>
21fdbaee
MV
633
634 * boot-9.scm (inherit-print-state): New experimental function.
635
adc14c93
JB
636Tue Sep 30 13:12:48 1997 Jim Blandy <jimb@totoro.red-bean.com>
637
638 Suggestion and script from Maciej Stachowiak:
639 * boot-9.scm: Split off modules into separate, autoloadable files.
640 This reduces startup time from 10.5s to 5.5s (user cpu).
641 * calling.scm, common-list.scm, ls.scm, q.scm, runq.scm,
642 string-fun.scm: New files, containing stuff that used to be in
643 boot-9.scm.
644 * Makefile.am (ice9_sources): List new files here, for
645 distribution and installation.
646 * Makefile.in: Regenerated.
647
5aa28c1e
JB
648Mon Sep 29 23:53:55 1997 Jim Blandy <jimb@totoro.red-bean.com>
649
650 * Makefile.in: Regenerated with automake 1.2c.
651
2f110c3c
MD
652Mon Sep 29 03:21:24 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
653
d1005e3c
MD
654 * slib.scm (slib:load): slib:load first tries to load the file
655 named NAME, then NAME.scm. On error, report the error occuring at
656 the first attempt (NAME) rather than the second (NAME.scm).
657
2f110c3c
MD
658 * boot-9.scm: Bugfix: Hard-solder the print-option procedure into
659 the make-options macro so that we needn't refer to a global
660 symbol.
661
83b38198
MD
662Sun Sep 28 21:40:24 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
663
664 * debug.scm: Moved options interface procedures to boot-9.scm.
665
666 * boot-9.scm: Define options interface procedures here instead.
667
af01fdcd
JB
668Sat Sep 27 20:19:20 1997 Jim Blandy <jimb@totoro.red-bean.com>
669
670 * boot-9.scm (separate-fields-discarding-char,
671 separate-fields-after-char, separate-fields-before-char): Call
672 continuation function, RET, as advertised: with each separated
673 field a separate argument.
674
675 * Makefile.in: Regenerated with automake 1.2a.
676
534a0099
MD
677Sat Sep 20 14:23:53 1997 Mikael Djurfeldt <mdj@kenneth>
678
679 * slib.scm (slib:load): Export.
680
681 * boot-9.scm (in-vicinity): Bugfix: Don't add "/" to an empty
682 vicinity;
683 Provide defmacro.
684
8fa5faad
MD
685Thu Sep 18 01:24:31 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
686
687 * r4rs.scm (apply): Set name property to 'apply.
688
11b05261
MD
689Tue Sep 16 22:09:50 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
690
691 * boot-9.scm (keyword->symbol, display-usage-report): Changed
0a54457d
MD
692 length --> string-length. (Thanks to Aleksandar Bakic.)
693 (separate-fields-discarding-char, separate-fields-after-char,
694 separate-fields-before-char): Bugfix from Maciej Stachowiak
695 <mstachow@mit.edu>. Thanks!
a4f9b1f6
MD
696 (try-module-linked): Try to find module among those already
697 registered.
698 (try-module-dynamic-link): Removed the first test which
699 corresponds to a call to `try-module-linked'.
700 (resolve-module): Resolve modules in this order: 1. Already
701 registered modules (for example those which have been statically
702 linked), 2. Try to autoload an .scm-file, 3. Try to dynamically
703 link a .so-file.
11b05261 704
24b2aac7
MD
705Mon Sep 15 23:39:54 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
706
707 * boot-9.scm (iota): Renamed list-reverse! --> reverse!
708
7cfae7e6
MD
709Thu Sep 11 02:31:38 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
710
711 * session.scm (name): New procedure: Gives name of object.
712 (source): New procedure: Gives source of object.
713
7a0ff2f8
MD
714Wed Sep 10 20:12:45 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
715
f4be1689 716 * boot-9.scm (primitive-macro?): New procedure.
7a0ff2f8
MD
717
718 * slib.scm: Added hack which transfers syntactic information from
719 the builtin variable `define' to the slib version if module (ice-9
720 syncase) has been loaded. This is necessary to get correct
721 expansion inside the slib module.
722
723 * psyntax.ss (build-let, build-named-let): New output
724 constructors.
725 (build-lexical-var): Seed gensym with symbolic name.
726 (self-evaluating?): Add keywords among self-evaluating types.
727 (let): New core form.
728 (if): Removed from core language.
729 (or, and, let, cond): Removed syntactic definitions.
730 (sc-expand3): New procedure: Expander which takes optional mode
731 and eval-syntactic-expanders-when arguments.
732
733 * syncase.scm (psyncomp): New procedure: Recompiles psyntax.pp.
734 Should be used inside the (ice-9 syncase) module with (use-syntax
735 syncase) and with the current directory containing the psyntax.ss
736 source.
737 Added hack to transfer syntactic information from the builtin
738 variable `define' to the slib version if module (ice-9 slib) has
739 been loaded.
740
741Fri Sep 5 05:47:36 1997 Mikael Djurfeldt <mdj@faun.nada.kth.se>
742
743 * syncase.scm (sc-interface, sc-expand): Removed hook setup.
744 (syncase): Publish syntax transformer to be used with
745 `use-syntax'.
746 (sc-macro): Use this as the value when publishing macros.
747
748 * boot-9.scm (module-type): Added `transformer'.
749 (make-module): Modified initialization.
750 (module-transformer, set-module-transformer!): Selector and
751 mutator for module-associated transformer.
752 (set-current-module): Use module-transformer to set
753 `scm:eval-transformer'.
754 (module-use!): Previous change reverted.
f4be1689 755 (use-syntax): New function: Install a transformer in current
7a0ff2f8
MD
756 module.
757 (sc-interface, sc-expand): Removed! :)
758
d43f8c97
MD
759Fri Sep 5 03:09:09 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
760
761 * emacs.scm (emacs-load): Added new parameter `module'.
762
763 * syncase.scm (putprop, getprop): Modified to use the object
764 properties of the variable object corresponding to the symbol;
765 This way we can ride on the mechanisms of the module system.
766 Changed `builtin-variable' calls to `define-public' calls.
767 Setup the hooks sc-expand and sc-interface.
768
769 * boot-9.scm (sc-interface, sc-expand): New builtin variables.
770 (set-current-module): Switch to and from sc-expand as
771 scm:eval-transformer when going into and out of modules using
772 syncase macros.
773 (module-use!): Set scm:eval-transformer to sc-expand when adding
774 the syncase interface.
775
1f355b4f
MD
776Thu Sep 4 14:57:04 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
777
778 * syncase.scm (putprop): Temporary fix which publishes new syntax
779 globally (the old behaviour was complex and connected to the inner
780 workings of the current module system).
781
e9b7bb80
MD
782Wed Sep 3 21:29:13 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
783
784 * psyntax.ss: Updated.
785 psyntax.pp: Bugfix: Previous version had some leading "t":s cut
786 off!
787
e672f1b5
MD
788Tue Sep 2 00:26:42 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
789
790 * boot-9.scm (gensym): Removed (replaced by primitive).
791 (obarray-gensym): Rewritten to use `gensym'.
792 (gentemp): Rewritten to use `gensym'.
793
30d732a6
MD
794Mon Sep 1 20:08:32 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
795
796 * gtcl.scm (make-tcl-binder): Rewritten to choose bindings
797 according to the following priorities:
798 1. tcl bindings which are present in override-scheme-list
799 2. bindings from the-scm-module
800 3. tcl bindings
801 This way the gtcl module can occur first in the use-list without
802 disabling the scheme interpreter.
803 (new-interpreter): New function.
804
805 * gwish.scm: Moved initialization code for the-interpreter to
806 gtcl.scm; Moved name space cleaning code to gtcl.scm and rewrote
807 it; Call `new-interpreter'; Don't :use-module (guile).
808
1aa8162b
JB
809Thu Aug 28 23:48:53 1997 Jim Blandy <jimb@totoro.red-bean.com>
810
811 * Makefile.in: Regenerated.
812
34695603
JB
813Wed Aug 27 11:35:09 1997 Jim Blandy <jimb@totoro.red-bean.com>
814
815 * Makefile.in: Regenerated, so it uses "tar", not "gtar".
816
52f1b046
MD
817Mon Aug 25 22:00:44 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
818
819 * emacs.scm (object->string, format, error-args->string): New
820 procedures.
821 (emacs-frame-eval): Reworked.
822
a5be27cd
MD
823Mon Aug 25 16:15:55 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
824
825 * session.scm (apropos-internal): Musn't initialize symbol
826 accumulator with a constant pair. That led to mutation of the
827 source!
828
68aed3ea
MD
829Sun Aug 24 01:03:10 1997 Mikael Djurfeldt <mdj@kenneth>
830
831 * session.scm (vector-for-each): Removed.
832 (apropos): vector-for-each --> array-for-each.
833 (apropos-internal): New function. Return list of accessible
834 symbols matching regexp.
835
836 * debug.scm (frame-number->index): New function. Convert frame
837 number (as displayed in the backtrace) to frame index (to be used
838 in stack-ref).
839
840 * emacs.scm (emacs-load): New arguments: interactivep: when
841 non-false, send back results to Emacs; colnum: Column number;
842 Use modules (ice-9 debug) and (ice-9 session);
843 (no-stack, no-source): New simple-actions;
844 (result-to-emacs): New procedure. Sends data to Emacs via the
845 result protocol;
846 (get-frame-source, emacs-select-frame, emacs-frame-eval,
847 emacs-symdoc): New procedures.
8c5a8bed 848
555f21d8
MD
849Wed Aug 20 13:21:11 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
850
eb7ec1e8 851 * emacs.scm (emacs-load): Adjust stack narrowing.
8c3420ad 852 (whitespace-chars): Include #\np.
eb7ec1e8 853
555f21d8
MD
854 * syncase.scm: Also turn off debugging evaluator and recording of
855 procedure names during loading of psyntax.pp.
856
857 * psyntax.pp: Removed leading blanks => 800K -> 100K.
858
230c4353
MD
859Tue Aug 19 02:39:41 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
860
19ef2a9b
MD
861 * syncase.scm: Don't tamper with debug mode setting when enabling
862 macros. Instead cut the stack with start-stack.
a48930c6 863 Load psyntax.pp with recording of positions turned off.
19ef2a9b 864
ceb177a4 865 * psyntax.pp, psyntax.ss (quasiquote): Changed fx= --> =.
230c4353 866
f4be1689
JB
867 * syncase.scm: New file: Guile-adaption for syntax-case macros.
868 * psyntax.pp, psyntax.ss: Syntax-case macros, portable version 2 by
230c4353
MD
869 R. Kent Dybvig, Oscar Waddell, Bob Hieb and Carl Bruggeman
870
0e81dabd
MD
871Mon Aug 18 21:58:25 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
872
f4be1689 873 * session.scm: New file: Session support.
0e81dabd
MD
874 (apropos): New procedure: List bindings given regexp.
875
6afcd3b2
GH
876Sat Aug 16 18:44:24 1997 Gary Houston <ghouston@actrix.gen.nz>
877
878 * boot-9.scm: define tms accessors: clock, utime, stime, cutime,
879 cstime.
880
096d5f90
MD
881Thu Aug 14 19:55:37 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
882
db75135d
MD
883 * emacs.scm (emacs-load): Something has changed in the reader so
884 that we now should set the port line count to the specified value
885 (linum) instead of (- linum 1).
886
096d5f90
MD
887 * slib.scm (slib:load): Use load-from-path instead of
888 primitive-load-path so that backtraces get narrowed properly at
889 the top.
890
891 * boot-9.scm (top-repl): Save stack already in signal handler in
892 order to narrow it correctly.
893 (save-stack): Adjust narrowing tag for the top of load-stacks.
894
7a6f1ffa
GH
895Tue Jul 29 01:18:08 1997 Gary Houston <ghouston@actrix.gen.nz>
896
897 * boot-9.scm (move->fdes, dup->port): use dup->fdes, not primitive-dup.
898 (dup->fdes): deleted, now done in C.
899
956055a9
GH
900Sat Jul 26 08:00:42 1997 Gary Houston <ghouston@actrix.gen.nz>
901
902 * boot-9.scm (setenv): new procedure, scsh compatible.
903
485cb6eb
MV
904Sat Jul 26 21:30:10 1997 Marius Vollmer <mvo@zagadka.ping.de>
905
906 * boot-9.scm (with-fluids): New macro to go with the
907 builtin `with-fluids*'.
908
4d0d7ef9
MD
909Thu Jul 24 04:28:11 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
910
911 * slib.scm (install-require-module): In newer versions of slib
912 *catalog* is #f until the first access. Therefore we call
913 require:provided? for a random feature if *catalog* is #f.
914
8309a10d
MD
915Wed Jul 23 20:13:04 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
916
917 * boot-9.scm: If using emacs interface, enable backtraces
918 automatically.
919
e38303a2
GH
920Mon Jul 21 06:45:45 1997 Gary Houston <ghouston@actrix.gen.nz>
921
922 * boot-9.scm (dup->port, dup->inport, dup->outport, dup->fdes,
923 dup, fdes->inport, fdes->outport, port->fdes): new procedures.
924 (duplicate-port): was a C primitive, now it's here.
925 (move->fdes): allow the first argument to be a file descriptor.
926 Return the modified port or file descriptor (was unspecified.)
927
2e3e9351
JB
928Fri Jul 11 00:13:43 1997 Jim Blandy <jimb@floss.red-bean.com>
929
32552d73
JB
930 Changes to compile under gnu-win32, from Marcus Daniels:
931 * boot-9.scm (load-user-init): If HOME is unset, provide
932 a default of /.
933
2e3e9351
JB
934 * boot-9.scm (define-public): Changed to accomodate Hobbit.
935
db561408
JB
936Tue Jun 24 00:31:47 1997 Jim Blandy <jimb@floss.red-bean.com>
937
fcff2c5c
JB
938 * boot-9.scm, debug.scm, hcons.scm, lineio.scm, mapping.scm,
939 poe.scm, slib.scm, tags.scm, threads.scm: Use normal list
940 notation, instead of #/ notation.
941
db561408
JB
942 * expect.scm (expect-strings): Pass regexp/newline flag to
943 make-regexp.
944
2409cdfa
JB
945Mon Jun 23 16:13:38 1997 Jim Blandy <jimb@floss.red-bean.com>
946
db561408
JB
947 Fix inconsistencies in parsing of #/ style lists.
948 * boot-9.scm (read-path-list-notation): New function.
949 (parse-path-symbol): Deleted. Replaced by above.
950 Plug in read-path-list-notation as the parser for #/ lists,
951 instead of the anonymous lambda form calling parse-path-symbol.
952 (Thanks to Maurizio Vitale.)
953
2409cdfa
JB
954 * boot-9.scm (make-list): Remove the definition of this function
955 from the (ice-9 common-list) module; make the `init' argument
956 optional in the scm module's definition, to match the deleted
957 definition. Harmony reigneth? (Thanks to Bernard URBAN.)
958
91b28bb5
JB
959Sun Jun 22 18:33:17 1997 Jim Blandy <jimb@floss.red-bean.com>
960
961 Try to detect when people are using one version of libguile and a
962 different version of ice-9. People have been skewing things and
963 sending in bug reports.
964 * version.scm.in: New file, which the configure script munges to
965 produce version.scm, which contains the ice-9 config stamp.
966 * boot-9.scm: Compare the libguile and ice-9 config stamps;
967 display a warning if the two are different.
968 * Makefile.am: Install version.scm, but don't distribute it.
969 Distribute version.scm.in, but don't install it.
970 * Makefile.in: Regenerated.
971
9fbdb48f
JB
972Thu Jun 19 21:01:16 1997 Jim Blandy <jimb@floss.red-bean.com>
973
974 * slib.scm (slib:warn): Alias for WARN function.
975
e320da2f
JB
976Fri Jun 13 00:32:04 1997 Jim Blandy <jimb@floss.red-bean.com>
977
978 * boot-9.scm (struct-printer): Fix off-by-one error in range
979 check. Correctly check for struct printer tag.
980
981 * expect.scm: Turn this into a module, (ice-9 expect).
982 (expect-port, expect-timeout, expect-timeout-proc,
983 expect-eof-proc, expect-char-proc, expect, expect-strings,
984 expect-select): Make these public definitions.
985 (expect-strings): Use make-regexp and regexp-exec, instead of
986 regcomp and regexec. We've omitted the REG_NEWLINE flag; hope
987 that's okay.
988
989 * boot-9.scm (with-regexp-parts): Comment this out. It has no
990 users in the core, and relies on mildly hairy details of the old
991 regexp interface.
992
993 * test.scm: Re-enable tests asserting that '() is true, and not a
994 boolean. This stuff has been true for a while.
995
996 * boot-9.scm (ipow-by-squaring, butlast): Fix uses of outdated
997 function names.
998
999 * boot-9.scm (with-excursion-getter-and-setter, q-rear): Doc
1000 fixes.
1001
3688473b
JB
1002Wed Jun 11 00:31:40 1997 Jim Blandy <jimb@floss.red-bean.com>
1003
1004 * Makefile.in: Regenerated after xtra_PLUGIN_guile_libs change in
1005 ../configure.in.
1006
0b46857f
MV
1007Fri Jun 6 14:37:18 1997 Marius Vollmer <mvo@zagadka.ping.de>
1008
1009 * boot-9.scm (struct-printer): Bugfix: Check the layout of the
1010 vtable and not the one of the struct.
1011
5dade857
MV
1012Wed Jun 4 23:27:16 1997 Marius Vollmer <mvo@zagadka.ping.de>
1013
1014 * boot-9.scm (struct-layout, %struct-printer-tag, struct-printer,
1015 make-struct-printer, set-struct-printer-in-vtable!): New bindings
1016 to support printing of structures.
1017 (record-type-vtable, make-record-type): Add slot to hold printing
1018 function and initialize it with something appropriate. Removed
1019 commented out printing code.
1020 (record-type-name, record-type-fields): Adjusted slot offsets.
1021 (%print-module): Reduce argument list to "mod" and "port".
1022
95d59d10
JB
1023Tue Jun 3 17:04:18 1997 Jim Blandy <jimb@totoro.cyclic.com>
1024
1025 * slib.scm (identity): New function, used by SLIB.
1026
e1a191a8
GH
1027Sat May 31 18:57:12 1997 Gary Houston <ghouston@actrix.gen.nz>
1028
1029 * boot-9.scm: signal-handler, alarm-thunk: removed.
1030 don't define ticks-interrupt etc.
1031 top-repl: install signal handlers for SIGINT, SIGFPE, SIGSEGV, SIGBUS
1032 during call to scm-style-repl.
1033
19da35d0
JB
1034Fri May 30 18:08:10 1997 Jim Blandy <jimb@floss.cyclic.com>
1035
1036 * slib.scm (slib:load): Use primitive-load-path instead of
1037 basic-load. This is probably wrong, but hopefully the entire
1038 source access system will be revised soon anyway, and this will
1039 make require behave more like Emacs Lisp's require. If this
1040 breaks something, please let me know. Maybe this is real dumb.
1041
0e165281
JB
1042Thu May 29 02:36:48 1997 Jim Blandy <jimb@floss.cyclic.com>
1043
1044 * regex.scm: Add a module declaration. Use DEFINE-PUBLIC everywhere.
1045 * boot-9.scm: If the `regex' feature is present, use the module
1046 (ice-9 regex).
1047
737c9113
JB
1048Tue May 27 22:48:14 1997 Tim Pierce <twp@twp.tezcat.com>
1049
1050 * regex.scm: New file.
1051 * Makefile.am (subpkgdata_DATA): Add regex.scm.
1052 * Makefile.in: Regenerated.
1053
36539a15
JB
1054Mon May 26 17:24:48 1997 Jim Blandy <jimb@totoro.cyclic.com>
1055
1056 * COPYING, boot-9.scm, debug.scm, emacs.scm, expect.scm, gtcl.scm,
1057 gwish.scm, hcons.scm, lineio.scm, mapping.scm, nonblocking.scm,
1058 oldprint.scm, poe.scm, r4rs.scm, source.scm, tags.scm, test.scm,
1059 threads.scm: New address for FSF.
1060
142ad3d9
JB
1061Fri May 16 04:09:45 1997 Jim Blandy <jimb@floss.cyclic.com>
1062
1063 * debug.scm: Update copyright years; this file has been worked on
36539a15 1064 in 1997.
142ad3d9 1065
cafa4c68
GH
1066Thu May 15 07:56:08 1997 Gary Houston <ghouston@actrix.gen.nz>
1067
1068 * expect.scm: use gettimeofday instead of get-internal-real-time
1069 and use a floating point timeout when calling select. Untested,
1070 since the regex library is currently AWOL.
1071
223be5f0
JB
1072Wed May 14 21:00:30 1997 Jim Blandy <jimb@floss.cyclic.com>
1073
1074 * boot-9.scm (eval-string): Function deleted; it was already
1075 implemented in C, so there's no point in making a divergable copy
1076 here.
1077
9b01064c
JB
1078Tue May 13 16:40:06 1997 Jim Blandy <jimb@floss.cyclic.com>
1079
1080 * Makefile.in: Regenerated, using automake-1.1p.
1081
1082Tue May 13 16:40:06 1997 Jim Blandy <jimb@floss.cyclic.com>
1083
1084 * Makefile.in: Regenerated, using automake-1.1p.
1085
1fbc60b2
GH
1086Tue May 13 02:48:49 1997 Gary Houston <ghouston@actrix.gen.nz>
1087
1088 * boot-9.scm (error-catching-loop): don't read a line from
1089 current input when quit is encountered, the previous change
1090 fixes this too.
1091
c7d97590
JB
1092Mon May 12 19:00:21 1997 Jim Blandy <jimb@floss.cyclic.com>
1093
1094 * boot-9.scm (scm-style-repl): After reading an expression,
1095 consume any trailing newline (perhaps preceded by whitespace), to
1096 avoid screwing up GDB. More detail in comments.
1097
6b3f3366
JB
1098Mon May 5 13:18:38 1997 Jim Blandy <jimb@floss.cyclic.com>
1099
1100 * Makefile.am (ETAGS_ARGS): New variable, since we're not treating
1101 the Scheme code like code yet.
1102 * Makefile.in: Resrac,husrched.
1103
eea324ee
MV
1104Wed Apr 30 15:25:15 1997 Marius Vollmer <mvo@zagadka.ping.de>
1105
1106 * boot-9.scm (link-dynamic-module): Do not catch errors from
1107 dynamic-link and dynamic-call. When the shared library exists it
1108 is now assumed to be suitable for a dynamic C module.
1109
ef79b65b
MV
1110Fri Apr 25 21:21:35 1997 Marius Vollmer <mvo@zagadka.ping.de>
1111
1112 * boot-9.scm (process-use-modules): New function to support the
1113 use-modules macro
1114 (use-modules): throw an error iff one of the requested modules
1115 can't be found.
1116
3be77013
GH
1117Tue Apr 29 06:54:46 1997 Gary Houston <ghouston@actrix.gen.nz>
1118
1119 * boot-9.scm: don't define timer-thunk or gc-thunk.
1120
28c682fa
JB
1121Sun Apr 27 17:56:09 1997 Jim Blandy <jimb@floss.cyclic.com>
1122
1123 * aclocal.m4: Removed; unnecessary, given changes of Apr 24.
1124
1125 * Makefile.am (subpkgdatadir): Use "ice-9" instead of "@module@";
1126 we're not using AM_INIT_GUILE_MODULE any more.
1127 * Makefile.in: Regeneratitetedrerd.
1128
20108301
JB
1129Thu Apr 24 01:33:33 1997 Jim Blandy <jimb@floss.cyclic.com>
1130
819f936b
JB
1131 Get 'make dist' to work again.
1132 * Makefile.am (EXTRA_DIST): Remove PLUGIN files.
1133 * Makefile.in: Regenerated, like two tons of fleas.
1134
20108301
JB
1135 Changes for reduced Guile distribution: one configure script,
1136 no plugins.
1137 * configure.in, configure: Removed.
1138 * Makefile.in: Regenerated.
1139
dab94cac
JB
1140Sat Apr 19 08:03:50 1997 Jim Blandy <jimb@floss.cyclic.com>
1141
48d224d7 1142 * boot-9.scm (eval-string, command-line, load-user-init): New
dab94cac
JB
1143 functions.
1144
65495221
GH
1145Sat Apr 12 08:27:05 1997 Gary Houston <ghouston@actrix.gen.nz>
1146
1147 * boot-9.scm (log10): defined.
1148
708bf0f3
GH
1149Tue Apr 1 17:46:49 1997 Gary Houston <ghouston@actrix.gen.nz>
1150
1151 * expect.scm (expect-select): correct the millisecond timeout
1152 arithmetic (from Marko.Kohtala@ntc.nokia.com).
1153
1154Mon Mar 31 03:23:19 1997 Gary Houston <ghouston@actrix.gen.nz>
1155
1156 * boot-9.scm (open-input-pipe, open-output-pipe): defined here
1157 instead of in libguile.
1158 (tm:sec etc.) new accessors for broken-down time.
1159 (set-tm:sec etc.) new setters for broken-down time.
1160
9337637f
GH
1161Thu Mar 27 05:06:00 1997 Gary Houston <ghouston@actrix.gen.nz>
1162
1163 * boot-9.scm (netent:addrtype, servent:port): added missing
1164 procedures.
1165 (netent:net, servent:proto): repaired.
1166 (utsname:sysname etc.): new accessors for uname.
1167
1168Tue Mar 25 03:04:03 1997 Gary Houston <ghouston@actrix.gen.nz>
1169
1170 * boot-9.scm (sockaddr:fam, sockaddr:path, sockaddr:addr,
1171 sockaddr:port): new functions.
1172
bce074ee
GH
1173Wed Mar 19 04:50:34 1997 Gary Houston <ghouston@actrix.gen.nz>
1174
1175 * boot-9.scm: define accessor procedures for the objects returned
1176 by getpw, getgr, gethost, getnet, getproto, getserv (e.g.,
1177 passwd:name, where the first component is the name of the C structure
1178 and the second is the unprefixed C member name.)
1179
1180Tue Mar 18 18:39:31 1997 Gary Houston <ghouston@actrix.gen.nz>
1181
095936d2 1182 * boot-9.scm (setpwent, setgrent, sethostent, setnetent, setprotoent,
bce074ee
GH
1183 setservent): no longer take an argument, it was bogus.
1184
81e2a235
GH
1185Thu Mar 13 00:13:41 1997 Gary Houston <ghouston@actrix.gen.nz>
1186
1187 * boot-9.scm (scm-error): deleted, reimplemented in C.
1188
04798288
MD
1189Mon Mar 10 15:48:31 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1190
1191 * boot-9.scm (process-define-module): Modified to handle both
1192 keywords and symbols.
1193
75a97b92
GH
1194Sat Mar 8 04:32:44 1997 Gary Houston <ghouston@actrix.gen.nz>
1195
1196 * slib.scm: update read usage.
1197
1198 * r4rs.scm: update primitive-load usage.
1199 Don't define read-sharp.
1200
1201 * boot-9.scm: use read-hash-extend to install extra read syntax.
1202 (read-sharp): removed.
1203 Adjust usage of primitive-load-path, read, which no longer take
1204 case_i or read-sharp arguments.
1205
63a3d814
MD
1206Sat Mar 8 00:07:54 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1207
90d5e280
MD
1208 * boot-9.scm: Added loading of session support module.
1209
63a3d814
MD
1210 * debug.scm: Removed `display-application'. (Replaced by
1211 primitive procedure.)
1212
1213 * boot-9.scm (beautify-user-module!): Don't add the root module
1214 interface to the end of the use-list of the root module.
1215
75a97b92
GH
1216Thu Mar 6 07:26:34 1997 Gary Houston <ghouston@actrix.gen.nz>
1217
1218 * boot-9.scm: repl-quit, repl-abort: obsolete variables deleted.
1219
f3c23298
GH
1220Wed Mar 5 20:30:24 1997 Gary Houston <ghouston@actrix.gen.nz>
1221
1222 * boot-9.scm: check use-emacs-interface for emacs support.
1223
7950df7c
GH
1224Sun Mar 2 19:47:14 1997 Gary Houston <ghouston@actrix.gen.nz>
1225
1226 * boot-9.scm (scm-style-repl): call repl-report-start-timing if
1227 read gets EOF.
1228 * (exit): alias for quit.
1229
8e44e7a0
GH
1230Sun Mar 2 05:25:11 1997 Gary Houston <ghouston@actrix.gen.nz>
1231
1232 * boot-9.scm (error-catching-loop thunk): use a status variable to
1233 return the quit args.
1234 (scm-style-repl): call -quit, passing return value from
1235 error-catching-repl. Make -quit return its args.
1a36eef2 1236 stand-alone-repl: comment out, since it seems unused.
7950df7c 1237
8e44e7a0
GH
1238 (error-catching-loop thunk): discard trailing junk after a (quit).
1239
9a942103
MD
1240Sat Mar 1 15:24:39 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1241
06a02069
MD
1242 * boot-9.scm: Removed the old printer code.
1243
1244 * r4rs.scm (apply, call-with-current-continuation): Added comment
1245 explaining why apply and call/cc need to be closures.
1246
1247 * boot-9.scm (apply, call-with-current-continuation): Bugfix:
1248 Removed. These definitions are already present in r4rs.scm.
1249
9a942103
MD
1250 * debug.scm (trace-entry, trace-exit): Check that we're on a repl
1251 stack before printing traced frames; Re-enable trace flag at end
1252 of handlers.
1253
e6875011
MD
1254Sat Mar 1 00:10:38 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1255
59e1116d
MD
1256 * debug.scm: Add hook for reset of trace level at abort.
1257
1258 * boot-9.scm (run-hooks): New procedure.
1259 (add-hooks!): New macro.
1260 Change hooks to use these functions.
1261
095936d2 1262 * debug.scm: *Warning* This feature is a bit premature. I add
e6875011
MD
1263 it anyway because 1. it is very useful, and, 2. you can start
1264 making it less premature by complaining to me and by modifying
1265 the source! :-)
1266 (trace): Given one or more procedure objects, trace each one.
1267 Given no arguments, show all traced procedures.
1268 (untrace): Given one or more procedure objects, untrace each one.
1269 Given no arguments, untrace all traced procedures. The tracing in
1270 Guile have an advantage to most other systems: We don't create new
1271 procedure objects, but mark the procedure objects themselves.
1272 This means that also anonymous and internal procedures can be
1273 traced.
1274
1275 * boot-9.scm (error-catching-loop): Added handling of apply-frame
1276 and exit-frame exceptions.
1277
095936d2 1278 * boot-9.scm (assert-repl-prompt, the-prompt-string): Removed.
e6875011
MD
1279 (set-repl-prompt!): Setter for repl prompt.
1280 (scm-style-repl): If prompt is #f, don't prompt; if prompt is a
1281 string, display it; if prompt is a thunk, call it and display its
1282 result; otherwise display "> ".
1283 (Change suggested by Roland Orre <orre@nada.kth.se>.)
0065d90e
MD
1284
1285 * r4rs.scm (%load-verbosely): Reverted change to
1286 `module-defined?', since the module system isn't bootstrapped when
1287 we load r4rs.scm. This is just a temporary fix to make the
1288 repository version runnable.
1289
eb52a06b
MD
1290Thu Feb 27 23:25:47 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1291
1292 * boot-9.scm: Removed the enabling of debug evaluator and
1293 recording of source code positions. This was placed there for our
1294 convenience, but it has already sneaked into the distribution
1295 once... so we'd better add this in our local copies instead when
1296 we need it. (These options are normally enabled at the end of
1297 boot-9.scm when loading the debug module.)
1298
d18d1b6d
MV
1299Thu Feb 27 16:04:45 1997 Marius Vollmer <mvo@zagadka.ping.de>
1300
1301 * boot-9.scm (module-defined?): New function.
1302 (macroexpand-1, macroexpand): Use local-ref instead of defined?
1303 and eval.
1304 * r4rs.scm (%load-verbosely): Use "module-defined?" instead of
1305 "defined?".
1306 * slib.scm (defined?): New function to take the place of the
1307 builtin "defined?". It allways examines the slib module.
1308
15ae1bee
MD
1309Mon Feb 24 21:46:15 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1310
1311 * configure.in: Added AM_MAINTAINER_MODE
1312
c2132276
GH
1313Sat Feb 15 04:51:20 1997 Gary Houston <ghouston@actrix.gen.nz>
1314
1315 * boot-9.scm (read-sharp): define directly, don't go through a
1316 %read-sharp layer.
1317
1318Tue Feb 11 08:45:48 1997 Gary Houston <ghouston@actrix.gen.nz>
1319
1320 * boot-9.scm (uniform-vector-set!): use uniform-array-set1!, not
1321 uniform-vector-set1! which doesn't exist.
1322
d590bbf6
MD
1323Mon Feb 10 03:01:48 1997 Mikael Djurfeldt <mdj@kenneth>
1324
1325 * boot-9.scm (backtrace): Removed. (A C version now exists in
1326 backtrace.c.)
1327
1e531c3a
GH
1328Fri Jan 24 06:05:36 1997 Gary Houston <ghouston@actrix.gen.nz>
1329
1330 * boot-9.scm (read-line!, read-delimited!, read-delimited,
1331 read-line): new procedures, see libguile/ChangeLog.
1332
bb0102f7
MV
1333Thu Jan 16 17:07:03 1997 Marius Vollmer <mvo@zagadka.ping.de>
1334
1335 Added dynamic linking of modules. See libguile/DYNAMIC-LINKING.
1336
1337 * boot-9.scm (split-c-module-name, convert-c-registered-modules,
1338 init-dynamic-module, dynamic-maybe-call,
1339 find-and-link-dynamic-module, link-dynamic-module,
1340 try-module-dynamic-link, registered-modules): New definitions for
1341 dynamic linking of modules.
1342 (resolve-module): Try to dynamically link the requested module
1343 after failing to load it as Scheme code.
1344
920235cc
GH
1345Wed Jan 8 05:50:14 1997 Gary Houston <ghouston@actrix.gen.nz>
1346
1347 * boot-9.scm (getservbyport, getservbyname): remove stray %.
1348
198befde
JB
1349Tue Jan 7 20:02:24 1997 Jim Blandy <jimb@floss.cyclic.com>
1350
1351 * boot-9.scm (and=>): Rename THUNK argument to PROCEDURE, 'cos
1352 that's what it is.
1353
1354 * lineio.scm (make-line-buffering-input-port): Properly test for
1355 the case of an empty buffer list. The old code assumed that '()
1356 was false.
1357
33cf699f
MD
1358Mon Jan 6 01:13:53 1997 Mikael Djurfeldt <mdj@kenneth>
1359
095936d2 1360 * boot-9.scm (use-modules): New macro (from Marius Vollmer).
33cf699f
MD
1361 (use-modules <module name> ...) Put the the modules named by
1362 <module name> ... on the use list of the current module.
1363
7a818853
JB
1364Sun Jan 5 15:52:59 1997 Jim Blandy <jimb@floss.cyclic.com>
1365
1366 * boot-9.scm (error-catching-loop): Remove message saying that
1367 typing "$" will put you in the debugger. This isn't implemented
1368 yet.
1369
506067f0
JB
1370Sun Dec 22 23:27:25 1996 Jim Blandy <jimb@floss.cyclic.com>
1371
1372 * boot-9.scm (delq-all!): Function deleted; delq!'s semantics have
1373 been fixed, so this function is superfluous.
1374 (transform-usage-lambda): Use delq!, not delq-all!.
1375
2ebf3156
MV
1376Tue Dec 17 20:36:45 1996 Marius Vollmer <mvo@zagadka.ping.de>
1377
7a818853 1378 * boot-9.scm (resolve-module): New optional parameter that
2ebf3156
MV
1379 controls whether autoloading is attempted or not. Default is #t.
1380 (process-define-module): Don't autoload the defined module.
1381 (try-module-autoload): Don't autoload the directory modules.
1382
7a818853 1383 * boot-9.scm (process-define-module): Ensure that the-scm-module
2ebf3156
MV
1384 is last in the `uses' list to allow shadowing builtin
1385 bindings. All :use-module options are added in the order they
1386 appear in the arguments but before anything already on the list
1387 (such as the-scm-module).
1388
00f06035
GH
1389Wed Dec 11 21:06:05 1996 Gary Houston <ghouston@actrix.gen.nz>
1390
1391 * slib.scm (slib-parent-dir): throw error if #f returned from
1392 %search-load-path.
1393
733943b9
TT
1394Sat Nov 30 23:57:28 1996 Tom Tromey <tromey@cygnus.com>
1395
1396 * PLUGIN/greet, PLUGIN/split.sed, PLUGIN/this.configure: Removed.
1397 * Makefile.am, aclocal.m4: New files.
1398 * configure.in: Updated for Automake.
1399
84abd243
MV
1400Wed Nov 27 14:16:14 1996 Marius Vollmer <mvo@zagadka.ping.de>
1401
1402 * boot-9.scm (macroexpand-1, macroexpand), slib.scm
1403 (slib:features), r4rs.scm (%load-verbosely): "defined?" is now a
1404 function, use it accordingly.
1405
a31bc6fb
JB
1406Thu Nov 21 11:12:10 1996 Jim Blandy <jimb@floss.cyclic.com>
1407
1408 It's an "eval closure", not an "eval thunk." A thunk is a
1409 function of no arguments.
1410 * boot-9.scm (module-type): Rename module field.
1411 (make-module, eval-in-module, make-root-module,
1412 set-current-module): Uses changed.
1413 (module-eval-closure, set-module-eval-closure!,
1414 root-module-closure): Renamed from module-eval-thunk,
1415 set-module-eval-thunk!, root-module-thunk.
1416 (set-current-module): Change uses of *top-level-lookup-thunk* to
1417 *top-level-eval-closure*.
1418
3763761c
JB
1419Wed Nov 20 14:45:27 1996 Jim Blandy <jimb@totoro.cyclic.com>
1420
1421 * slib.scm (slib-parent-dir): Use string-length, not length.
1422 (Thanks to Bernard Urban.)
1423
7ad737b6
MD
1424Sat Nov 2 20:00:42 1996 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1425
7a818853 1426 * boot-9.scm: The debugging evaluator and recording of positions
7ad737b6
MD
1427 aren't enabled by default any longer (they are switched on in
1428 debug.scm). But during development we want to have them also
1429 *inside* boot-9.scm. Therefore, two lines are added at the
1430 beginning of boot-9.scm to enable these.
1431
1432 Call `provide' so that `records' are included among the
1433 `*features*'.
1434
1435 The scheme for saving the stack has been adjusted: save-stack is
1436 now commonly available for saving the stack. Calling `save-stack'
1437 sets a flag `stack-saved?' which prevents overwriting the stack.
1438 `stack-saved?' is reset at `abort'.
1439
1440 Spelling correction: seperate --> separate.
1441
1442 Removed `:'s that had creeped into some comments.
1443
7a818853 1444 The repl now doesn't print #<unspecified> results any longer
7ad737b6
MD
1445 If the user wants to see this, he can do
1446 (assert-repl-print-unspecified #t) in his startup file.
1447
7a818853 1448 The user now gets a friendly message instead of a backtrace at
7ad737b6
MD
1449 error.
1450
1451 Added `before-read-hook'.
1452
1453 Load module (ice-9 emacs) if option `-e' was specified.
1454
1455 (provide): New function.
1456
1457 (error): Save stack at entry, so that Guile entrails won't show up
1458 in backtraces.
1459
1460 (backtrace): New function.
1461
7a818853 1462 (save-stack): Can now take arbitrary number of stack narrowing
7ad737b6
MD
1463 specifier pairs. The first specifier in a pair controls inner
1464 border, the second the outer border. A number means cut that
1465 number of frames, a procedure object means cut until that object
1466 is found in operator position in a frame.
1467
1468 * debug.scm: Enable debugging evaluator and recording of positions
1469 by default.
1470
1471 * slib.scm (slib:load): Adapt to the new behavior of
1472 primitive-load: It doesn't any longer try both with and without
1473 ".scm" extension. (We don't want to use %search-load-path here.)
1474
1475 (implementation-vicinity): New function. slib requires it
1476
1477 (library-vicinity): Updated.
1478
1479 Load "require.scm" in the library-vicinity.
1480
1481 (install-require-vicinity, install-require-module): New functions.
1482
99f97bfe
JB
1483Mon Oct 28 17:56:29 1996 Jim Blandy <jimb@floss.cyclic.com>
1484
581a242b
JB
1485 * boot-9.scm (load-from-path): New function.
1486
1487 * boot-9.scm (try-load, basic-try-load, try-load-module,
1488 try-load): Deleted. I don't think they're being used.
1489
48be3fb3
JB
1490 * Makefile.in (scm_files): Add r4rs.scm and test.scm to this list,
1491 so they'll get distributed.
1492
1493 Get Guile to be a little less chatty by default. The new user
1494 should see as little clutter as possible.
1495 * r4rs.scm (%load-verbosely): Make this #f by default.
1496 * boot-9.scm (scm-repl-verbose): Make this #f by default.
1497 (scm-style-repl): Don't run 'pk' on the value passed to quit.
1498
1499 * r4rs.scm: New file.
1500 * boot-9.scm: Load r4rs.scm, first thing.
1501 (OPEN_READ, OPEN_WRITE, OPEN_BOTH, *null-device*, open-input-file,
1502 open-output-file, open-io-file, close-input-port,
1503 close-output-port, close-io-port, call-with-input-file,
1504 call-with-output-file, with-input-from-port, with-output-to-port,
1505 with-error-to-port, with-input-from-file, with-output-to-file,
1506 with-error-to-file, with-input-from-string, with-output-to-string,
1507 with-error-to-string, the-eof-object): Definitions moved to
1508 r4rs.scm. Not all of them are R4RS, but those that are use those
1509 that are not.
1510 (load, %load-verbosely, %load-announce): Moved, along with code to
1511 set %load-hook, to r4rs.scm.
1512
1513 * test.scm: New file.
1514
1515 * boot-9.scm (integer?): Definition deleted, in favor of the one
1516 present in libguile (which used to be called int?). I have no
1517 idea why integer? didn't just call int? to begin with.
1518
1519 * boot-9.scm (<, <=, =, >, >=): Definitions in terms of <?, <=?,
1520 =?, >?, and >=? deleted; they're defined that way by libguile now.
1521
99f97bfe
JB
1522 * boot-9.scm (load): Simplified; primitive-load does most of this
1523 work now.
1524 (%load-announce-win): Removed; no longer used. Set %load-hook to
1525 call %load-announce.
1526
3afb28ce
GH
1527Sun Oct 27 07:47:03 1996 Gary Houston <ghouston@actrix.gen.nz>
1528
4fe3604d
JB
1529 * boot-9.scm (stat:dev, stat:ino, stat:mode, stat:nlink, stat:uid,
1530 stat:gid, stat:rdev, stat:size, stat:atime, stat:mtime,
1531 stat:ctime, stat:blksize, stat:blocks) accessor functions for stat
1532 components.
3afb28ce
GH
1533 (file-is-directory?): use stat:type.
1534
3065a62a
JB
1535Fri Oct 25 03:34:47 1996 Jim Blandy <jimb@floss.cyclic.com>
1536
1537 * boot-9.scm (%read-sharp): Don't recognize the `#!' syntax here;
1538 that's now taken care of in libguile, and in a way compatible with
1539 SCSH (which this isn't).
1540
e4c5095f
JB
1541Mon Oct 21 18:52:36 1996 Jim Blandy <jimb@totoro.cyclic.com>
1542
1543 * boot-9.scm: Formatting tweaks.
1544
1bb961a3
MD
1545Fri Oct 18 01:03:08 1996 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
1546
1547 * boot-9.scm (handle-system-error): Added hooks before-error-hook,
1548 after-error-hook, before-backtrace-hook and after-backtrace-hook
1549 to the error handler. E.g.: fancy emacs support could plug into
1550 these.
1551 (save-stack): New function. The stack is now made differently
1552 depending on the stack id. (The motivation is to make a better
1553 choice regarding what stack frames to present to the user.)
1554 (error-catching-loop): Stack handling code moved outside into
1555 save-stack.
1556
9a0d70e2
GH
1557Thu Oct 17 20:33:08 1996 Gary Houston <ghouston@actrix.gen.nz>
1558
d7189b49
GH
1559 * Makefile.in (scm_files): add expect.scm.
1560
1561 * expect.scm: new file ported from guile-iii.
1562
9a0d70e2
GH
1563 * boot-9.scm: remove handle-system-error, after moving the code into
1564 error-catching-loop.
1565 Don't set 'throw-handler-default property on error keys.
1566 Just interpret (almost) any throw with 4 args as an error throw.
1567 Delete some try-load stuff that was already commented out.
1568
35c5db87
GH
1569 Second thoughts, keep handle-system-error but call it from
1570 error-catching-loop.
1571
d065b65f
JB
1572Tue Oct 15 17:07:20 1996 Jim Blandy <jimb@floss.cyclic.com>
1573
aa9576ad
JB
1574 * boot-9.scm: Doc fixes.
1575 (make-module): Rework for readability.
1576 (make-root-module, make-scm-module): USES argument to make-module
1577 should be '(), not #f.
1578
d065b65f
JB
1579 * boot-9.scm (try-load): %sys-load-path has been renamed to
1580 primitive-load-path; adjust call here.
1581
c01c94bf
MD
1582Tue Oct 15 14:25:01 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
1583
d065b65f 1584 * boot-9.scm (signal-handler): Bugfix: Moved the recording of
c01c94bf
MD
1585 the stack to the correct place: when it is decided to generate an
1586 error-signal.
1587
2dfc85c0
MD
1588Mon Oct 14 22:20:30 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
1589
1590 * boot-9.scm (error-catching-loop, signal-handler,
1591 handle-system-error): Backtracing now works for signals aswell;
1592 Backtracing mechanism can now identify the stack root created by
1593 start-stack so that the user isn't exposed to system stack frames.
1594
84d8ad97
MD
1595Mon Oct 14 06:05:42 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
1596
1597 * Makefile.in: Added threads.scm.
1598
4f0292cf
MD
1599Mon Oct 14 04:21:51 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
1600
1601 * debug.scm (make-enable, make-disable): Simplified.
1602
1603 * boot-9.scm: Renamed %%throw-handler-default -->
1604 throw-handler-default.
1605 ((handle-system-error key . arg-list)): Changed the way errors are
1606 reported.
1607 ((scm-style-repl)): Wrap up the call to eval in a start-stack
1608 acro.
1609 ((error-catching-loop thunk)): Introduce a lazy-catch into
1610 error-catching-loop so that the stack can be captured.
1611
1eaceb61
JB
1612Thu Oct 10 22:27:32 1996 Jim Blandy <jimb@totoro.cyclic.com>
1613
1614 * mapping.scm (hash-table-mapping): Explicitly request that
1615 make-vector fill new vectors with '(); this will make it easier to
1616 port Guile Scheme code to other Schemes.
1617 * boot-9.scm (make-print-style, make-print-table): Same.
1618
6fa8995c
GH
1619Sun Oct 6 03:54:59 1996 Gary Houston <ghouston@actrix.gen.nz>
1620
1621 * boot-9.scm (load): rewritten again.
1622 Append "." to the default %load-path.
1623 (feature?): new function: checks for a symbol in the features list.
1624 (module-local-variable): remove apparently useless (caddr (list m v
1625 ...))
1626 (%load-announce): minor formatting change.
1627 (file-exists?): use access? if posix is featured.
1628 (file-is-directory?): use stat if i/o-extensions is featured.
1629 (try-module-autoload module-name): use file-exists? before
1630 file-is-directory?
1631
8b4a21d1
MD
1632Sat Oct 5 18:54:03 1996 Mikael Djurfeldt <mdj@kenneth>
1633
8acae5bb
MD
1634 * boot-9.scm: Added conditional loading of threads.scm.
1635
1636 * threads.scm: New file. Modified from the Cygnus-r0.3
1637 distribution.
1638
8b4a21d1
MD
1639 * boot-9.scm (error-catching-loop): Added handling of key
1640 `switch-repl'.
1641
1642 * boot-9.scm: Name change %%bad-throw --> bad-throw.
1643
c90c9685
JB
1644Wed Oct 2 23:38:44 1996 Jim Blandy <jimb@totoro.cyclic.com>
1645
1646 * boot-9.scm (make-record-type, record-constructor): Don't assume
1647 the empty list is false when parsing the argument list.
1648
1649Mon Sep 30 22:15:50 1996 Jim Blandy <jimb@totoro.cyclic.com>
1650
1651 * boot-9.scm (signal-handler): Clean up logic.
1652
1653 * boot-9.scm (load): Assume %load-path is always bound.
1654
5552355a
GH
1655Sat Sep 28 00:15:37 1996 Gary Houston <ghouston@actrix.gen.nz>
1656
1657 * boot-9.scm (error): replace another throw with scm-error. Throw
1658 to 'misc-error instead of 'error (no need to distinguish these.)
1659 Don't set up 'error as a key.
1660 Set up regex-error as a key, if regex is available.
1661 (signal-handler): use scm-error, not throw.
1662
7a818853 1663 (%try-load, try-load-with-path, %load, load-with-path,
5552355a
GH
1664 basic-try-load-with-path, basic-load-with-path,
1665 try-load-module-with-path,load-module-with-path): deleted, since
1666 they seem redundant.
1667 (try-load): define using %try-load, not try-load-with-path.
7a818853 1668 (load): rewritten. load tries to open the file directly and
5552355a
GH
1669 with a .scm extension before searching the library directories
1670 (should "." be added to %load-path? then load could still open
1671 directly files starting with "/").
1672 (try-module-autoload): use load, not load-with-path.
1673 (%load-indent): deleted, -2 was causing errors.
1674
1675 (%read-sharp): use port-line, not line-number.
1676
c90c9685
JB
1677Fri Sep 27 16:23:51 1996 Jim Blandy <jimb@totoro.cyclic.com>
1678
1679 * boot-9.scm (%%bad-throw): Delete definition. 1) It's very
1680 straightforward to provide the equivalent functionality using
1681 (catch #t ...), so there's no need for the extra complexity. 2)
1682 Outside the context of a read-eval-print loop (which Guile should
1683 not require) it's not clear we should do anything more complicated
1684 than print an error and exit; the user or REPL can establish
1685 something better if it wants. 3) In that case, it's much more
1686 robust to just do it in the C code.
1687
855c0eac
GH
1688Tue Sep 24 06:53:04 1996 Gary Houston <ghouston@actrix.gen.nz>
1689
1690 * boot-9.scm (%try-load): define using primitive-load. Previously
1691 %try-load itself was the primitive.
1692 (load-with-path): use scm-error instead of %load-announce-lossage.
1693 Errors are thrown to 'misc-error instead of 'could-not-load.
1694 (%load-announce-lossage): deleted.
1695
a0c97697
MD
1696Mon Sep 23 00:16:31 1996 Mikael Djurfeldt <mdj@kenneth>
1697
1698 * boot-9.scm (warn, scm-style-repl): Use C printer instead of `print'.
1699 (make-record-type type-name fields): Temporarily remove support
1700 for printing of records (not possible yet with C printer).
1701
be2d2c70
GH
1702Fri Sep 20 00:24:27 1996 Gary Houston <ghouston@actrix.gen.nz>
1703
1704 * boot-9.scm (file-exists?, file-is-directory): catch only
1705 system-error, not every kind of error.
1706 (scm-error): new procedure.
1707
434bf5ce
JB
1708Thu Sep 19 16:02:46 1996 Jim Blandy <jimb@totoro.cyclic.com>
1709
1710 * boot-9.scm: Formatting tweaks.
1711
2194b6f0
GH
1712Wed Sep 18 09:07:37 1996 Gary Houston <ghouston@actrix.gen.nz>
1713
1714 * boot-9.scm (%%handle-system-error key): remove the code for
1715 SCM-style errors. handle the case that an unexpected number
1716 of args are supplied.
1717 (%%system-errors): removed.
1718 (error): redefine using a throw with key and 4 args.
1719 ('error): associate 'error, 'error-signal keys with
1720 %%handle-system-error.
1721 (%%default-error-handler): removed.
1722 (signal-handler): throw with 4 args and use the error-signal key.
1723 Create an error message instead of using numerical codes.
1724 (%%bad-throw): call error instead of throw if key not found.
1725
1726Tue Sep 17 04:11:28 1996 Gary Houston <ghouston@actrix.gen.nz>
1727
1728 * boot-9.scm: initialize new error keys (see libguile/ChangeLog).
1729 (%%handle-system-error key): check subr is not #f before printing.
1730 Recognize %s (embed an argument using "display") and
1731 %S (embed an argument using "write").
1732
234f2da6
GH
1733Sun Sep 15 03:55:35 1996 Gary Houston <ghouston@actrix.gen.nz>
1734
1735 * boot-9.scm (%%handle-system-error key): set args and rest to
1736 the empty list if they are #f.
1737 Initialize out-of-range as an error key.
1738
e1724d20
GH
1739Sat Sep 14 03:41:15 1996 Gary Houston <ghouston@actrix.gen.nz>
1740
40c8906e
GH
1741 * PLUGIN/REQ: remove the "ice-9 lgh" line which causes a cycle.
1742
e1724d20
GH
1743 * boot-9.scm: remove leading %% from references to '%%system-error.
1744 (%%handle-system-error): don't pass all the thrown arguments when
1745 aborting, just the key and subr.
1746 Remove the code to "Install default handlers for built-in errors."
1747 Remove the definition of the syserror procedure.
1748 Associate 'numerical-overflow with default handler.
1749
1a80fb07
MD
1750Fri Sep 13 04:58:11 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
1751
1752 * boot-9.scm: Name change: value-ref --> local-ref
1753 resolved-ref --> nested-ref Motivation: conformance to the other
1754 dictionary operators: list-ref operates on list, vector-ref
1755 operates on vector, nested-ref operates on nested namespace,
1756 local-ref operates on the local nested namespace.
1757
7cb1d4d3
GH
1758Sat Sep 7 06:44:47 1996 Gary Houston <ghouston@actrix.gen.nz>
1759
1760 * boot-9.scm (%%handle-system-error): recognise errors thrown
1761 by lgh-error (fill-message etc.)
9561554c 1762 (fill-message): check first whether args is null.
a949b3f2 1763 (fill-message): bug fix and check that args is a list.
7cb1d4d3 1764
393ee9a8
JB
1765Thu Sep 5 11:33:41 1996 Jim Blandy <jimb@floss.cyclic.com>
1766
1767 * boot-9.scm: %load-path is initialized in C code now.
1768 (implementation-vicinity, parse-path): Deleted, along with code to
1769 initialize %load-path.
1770
1771 * boot-9.scm (in-vicinity): If the vicinity doesn't end with a
1772 "/", use one to separate it from the file.
1773
e4ef46d4
JB
1774Thu Aug 29 23:05:11 1996 Thomas Morgan <tmorgan@gnu.ai.mit.edu>
1775
1776 * boot-9.scm (%load-path): Add the site directory.
1777 Add the directory named after the version number.
1778 Prepend the version number to the other directories in the path.
1779 Simplify by mapping the common prefix onto each item.
1780 * Makefile.in (datadir, pkgdatadir, pkgverdatadir, subpkgdatadir,
1781 sitedatadir): New definitions.
1782 (libparent, libdir, install_path): Replaced by above.
1783 (install): Create the above directories.
1784 Put the source files into subpkgdatadir.
1785 (uninstall): Remove the above directories.
1786
00312aa3
JB
1787Thu Aug 29 21:48:47 1996 Jim Blandy <jimb@floss.cyclic.com>
1788
1789 Don't use the PLUGIN system to gather information for the
1790 Makefile's distribution and installation targets; just put it all
1791 in the Makefile directly.
1792 * PLUGIN/this.configure (scm_files, aux_files): Remove sections
1793 for these.
1794 * configure.in: Remove code that gets and substitutes scm_files and
1795 aux_files.
1796 * Makefile.in (scm_files, aux_files): Write out the list of files
1797 here, where people expect to find them.
1798
96a8aaf3
MD
1799Fri Aug 23 06:44:36 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
1800
1801 * boot-9.scm: Preliminary solution: optionally load the debug
7685f77c 1802 module. Changed "gls" to "guile1.0b3".
96a8aaf3
MD
1803
1804 * debug.scm: New file: debug extensions.
1805
4e378733
MD
1806Wed Aug 21 13:06:56 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
1807
1808 * boot-9.scm (print-vector): Renamed weak-hash-table? -->
1809 weak-key-hash-table?. (Again!)
1810
0190d683
MD
1811Tue Aug 20 07:31:39 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
1812
1813 * boot-9.scm (print-vector, macro-table, xformer-table):
1814 Renamed weak-hash-table --> weak-key-hash-table.
1815
1816 * poe.scm (funcq-memo): Renamed weak-hash-table -->
1817 weak-key-hash-table.
1818
8b13c6b3
GH
1819Sat Aug 3 06:16:35 1996 Gary Houston <ghouston@actrix.gen.nz>
1820
1821 * boot-9.scm (*null-device*): global constant from goonix.
1822 (move->fdes): adjusted for boolean primitive-move->fdes. return
1823 the modified port, always set revealed count to 1 (SCSH compatible).
1824 (release-port-handle port): from goonix (SCSH compatible).
1825 (%open-file): removed.
1826 (open-input-file, open-output-file, file-exists?, file-is-directory?):
1827 modified for open-file change (does not return #f).
1828
a44a755d
JB
1829Thu Aug 1 02:52:42 1996 Jim Blandy <jimb@totoro.cyclic.com>
1830
1831 * Makefile.in (dist-dir): New target for new dist system.
1832 (manifest): Deleted.
1833 * PLUGIN/this.configure (aux_files): Removed PLUGIN; it's a
1834 directory, and needs special treatment in the dist-dir target.
1835
02b754d3
GH
1836Thu Aug 1 09:00:21 1996 Gary Houston <ghouston@actrix.gen.nz>
1837
1838 * boot-9.scm: remove the wrappers for '%' system primitives,
1839 now that they throw errors directly.
1840 remove make-simple-wrapper and similar functions.
1841 protect a call to getenv which may now throw an exception.
1842
1843Wed Jul 31 23:44:42 1996 Gary Houston <ghouston@actrix.gen.nz>
1844
1845 * boot-9.scm (false-if-exception): new macro.
1846
0f2d19dd
JB
1847Fri Apr 19 13:53:08 1996 Tom Lord <lord@beehive>
1848
1849 * The more things change...
1850
1851