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