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