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