* boot-9.scm (module-defined?): New function.
[bpt/guile.git] / ice-9 / ChangeLog
CommitLineData
15ae1bee
MD
1Mon Feb 24 21:46:15 1997 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
2
3 * configure.in: Added AM_MAINTAINER_MODE
4
c2132276
GH
5Sat Feb 15 04:51:20 1997 Gary Houston <ghouston@actrix.gen.nz>
6
7 * boot-9.scm (read-sharp): define directly, don't go through a
8 %read-sharp layer.
9
10Tue Feb 11 08:45:48 1997 Gary Houston <ghouston@actrix.gen.nz>
11
12 * boot-9.scm (uniform-vector-set!): use uniform-array-set1!, not
13 uniform-vector-set1! which doesn't exist.
14
d590bbf6
MD
15Mon Feb 10 03:01:48 1997 Mikael Djurfeldt <mdj@kenneth>
16
17 * boot-9.scm (backtrace): Removed. (A C version now exists in
18 backtrace.c.)
19
1e531c3a
GH
20Fri Jan 24 06:05:36 1997 Gary Houston <ghouston@actrix.gen.nz>
21
22 * boot-9.scm (read-line!, read-delimited!, read-delimited,
23 read-line): new procedures, see libguile/ChangeLog.
24
bb0102f7
MV
25Thu Jan 16 17:07:03 1997 Marius Vollmer <mvo@zagadka.ping.de>
26
27 Added dynamic linking of modules. See libguile/DYNAMIC-LINKING.
28
29 * boot-9.scm (split-c-module-name, convert-c-registered-modules,
30 init-dynamic-module, dynamic-maybe-call,
31 find-and-link-dynamic-module, link-dynamic-module,
32 try-module-dynamic-link, registered-modules): New definitions for
33 dynamic linking of modules.
34 (resolve-module): Try to dynamically link the requested module
35 after failing to load it as Scheme code.
36
920235cc
GH
37Wed Jan 8 05:50:14 1997 Gary Houston <ghouston@actrix.gen.nz>
38
39 * boot-9.scm (getservbyport, getservbyname): remove stray %.
40
198befde
JB
41Tue Jan 7 20:02:24 1997 Jim Blandy <jimb@floss.cyclic.com>
42
43 * boot-9.scm (and=>): Rename THUNK argument to PROCEDURE, 'cos
44 that's what it is.
45
46 * lineio.scm (make-line-buffering-input-port): Properly test for
47 the case of an empty buffer list. The old code assumed that '()
48 was false.
49
33cf699f
MD
50Mon Jan 6 01:13:53 1997 Mikael Djurfeldt <mdj@kenneth>
51
52* * boot-9.scm (use-modules): New macro (from Marius Vollmer).
53 (use-modules <module name> ...) Put the the modules named by
54 <module name> ... on the use list of the current module.
55
7a818853
JB
56Sun Jan 5 15:52:59 1997 Jim Blandy <jimb@floss.cyclic.com>
57
58 * boot-9.scm (error-catching-loop): Remove message saying that
59 typing "$" will put you in the debugger. This isn't implemented
60 yet.
61
506067f0
JB
62Sun Dec 22 23:27:25 1996 Jim Blandy <jimb@floss.cyclic.com>
63
64 * boot-9.scm (delq-all!): Function deleted; delq!'s semantics have
65 been fixed, so this function is superfluous.
66 (transform-usage-lambda): Use delq!, not delq-all!.
67
2ebf3156
MV
68Tue Dec 17 20:36:45 1996 Marius Vollmer <mvo@zagadka.ping.de>
69
7a818853 70 * boot-9.scm (resolve-module): New optional parameter that
2ebf3156
MV
71 controls whether autoloading is attempted or not. Default is #t.
72 (process-define-module): Don't autoload the defined module.
73 (try-module-autoload): Don't autoload the directory modules.
74
7a818853 75 * boot-9.scm (process-define-module): Ensure that the-scm-module
2ebf3156
MV
76 is last in the `uses' list to allow shadowing builtin
77 bindings. All :use-module options are added in the order they
78 appear in the arguments but before anything already on the list
79 (such as the-scm-module).
80
00f06035
GH
81Wed Dec 11 21:06:05 1996 Gary Houston <ghouston@actrix.gen.nz>
82
83 * slib.scm (slib-parent-dir): throw error if #f returned from
84 %search-load-path.
85
733943b9
TT
86Sat Nov 30 23:57:28 1996 Tom Tromey <tromey@cygnus.com>
87
88 * PLUGIN/greet, PLUGIN/split.sed, PLUGIN/this.configure: Removed.
89 * Makefile.am, aclocal.m4: New files.
90 * configure.in: Updated for Automake.
91
84abd243
MV
92Wed Nov 27 14:16:14 1996 Marius Vollmer <mvo@zagadka.ping.de>
93
94 * boot-9.scm (macroexpand-1, macroexpand), slib.scm
95 (slib:features), r4rs.scm (%load-verbosely): "defined?" is now a
96 function, use it accordingly.
97
a31bc6fb
JB
98Thu Nov 21 11:12:10 1996 Jim Blandy <jimb@floss.cyclic.com>
99
100 It's an "eval closure", not an "eval thunk." A thunk is a
101 function of no arguments.
102 * boot-9.scm (module-type): Rename module field.
103 (make-module, eval-in-module, make-root-module,
104 set-current-module): Uses changed.
105 (module-eval-closure, set-module-eval-closure!,
106 root-module-closure): Renamed from module-eval-thunk,
107 set-module-eval-thunk!, root-module-thunk.
108 (set-current-module): Change uses of *top-level-lookup-thunk* to
109 *top-level-eval-closure*.
110
3763761c
JB
111Wed Nov 20 14:45:27 1996 Jim Blandy <jimb@totoro.cyclic.com>
112
113 * slib.scm (slib-parent-dir): Use string-length, not length.
114 (Thanks to Bernard Urban.)
115
7ad737b6
MD
116Sat Nov 2 20:00:42 1996 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
117
7a818853 118 * boot-9.scm: The debugging evaluator and recording of positions
7ad737b6
MD
119 aren't enabled by default any longer (they are switched on in
120 debug.scm). But during development we want to have them also
121 *inside* boot-9.scm. Therefore, two lines are added at the
122 beginning of boot-9.scm to enable these.
123
124 Call `provide' so that `records' are included among the
125 `*features*'.
126
127 The scheme for saving the stack has been adjusted: save-stack is
128 now commonly available for saving the stack. Calling `save-stack'
129 sets a flag `stack-saved?' which prevents overwriting the stack.
130 `stack-saved?' is reset at `abort'.
131
132 Spelling correction: seperate --> separate.
133
134 Removed `:'s that had creeped into some comments.
135
7a818853 136 The repl now doesn't print #<unspecified> results any longer
7ad737b6
MD
137 If the user wants to see this, he can do
138 (assert-repl-print-unspecified #t) in his startup file.
139
7a818853 140 The user now gets a friendly message instead of a backtrace at
7ad737b6
MD
141 error.
142
143 Added `before-read-hook'.
144
145 Load module (ice-9 emacs) if option `-e' was specified.
146
147 (provide): New function.
148
149 (error): Save stack at entry, so that Guile entrails won't show up
150 in backtraces.
151
152 (backtrace): New function.
153
7a818853 154 (save-stack): Can now take arbitrary number of stack narrowing
7ad737b6
MD
155 specifier pairs. The first specifier in a pair controls inner
156 border, the second the outer border. A number means cut that
157 number of frames, a procedure object means cut until that object
158 is found in operator position in a frame.
159
160 * debug.scm: Enable debugging evaluator and recording of positions
161 by default.
162
163 * slib.scm (slib:load): Adapt to the new behavior of
164 primitive-load: It doesn't any longer try both with and without
165 ".scm" extension. (We don't want to use %search-load-path here.)
166
167 (implementation-vicinity): New function. slib requires it
168
169 (library-vicinity): Updated.
170
171 Load "require.scm" in the library-vicinity.
172
173 (install-require-vicinity, install-require-module): New functions.
174
99f97bfe
JB
175Mon Oct 28 17:56:29 1996 Jim Blandy <jimb@floss.cyclic.com>
176
581a242b
JB
177 * boot-9.scm (load-from-path): New function.
178
179 * boot-9.scm (try-load, basic-try-load, try-load-module,
180 try-load): Deleted. I don't think they're being used.
181
48be3fb3
JB
182 * Makefile.in (scm_files): Add r4rs.scm and test.scm to this list,
183 so they'll get distributed.
184
185 Get Guile to be a little less chatty by default. The new user
186 should see as little clutter as possible.
187 * r4rs.scm (%load-verbosely): Make this #f by default.
188 * boot-9.scm (scm-repl-verbose): Make this #f by default.
189 (scm-style-repl): Don't run 'pk' on the value passed to quit.
190
191 * r4rs.scm: New file.
192 * boot-9.scm: Load r4rs.scm, first thing.
193 (OPEN_READ, OPEN_WRITE, OPEN_BOTH, *null-device*, open-input-file,
194 open-output-file, open-io-file, close-input-port,
195 close-output-port, close-io-port, call-with-input-file,
196 call-with-output-file, with-input-from-port, with-output-to-port,
197 with-error-to-port, with-input-from-file, with-output-to-file,
198 with-error-to-file, with-input-from-string, with-output-to-string,
199 with-error-to-string, the-eof-object): Definitions moved to
200 r4rs.scm. Not all of them are R4RS, but those that are use those
201 that are not.
202 (load, %load-verbosely, %load-announce): Moved, along with code to
203 set %load-hook, to r4rs.scm.
204
205 * test.scm: New file.
206
207 * boot-9.scm (integer?): Definition deleted, in favor of the one
208 present in libguile (which used to be called int?). I have no
209 idea why integer? didn't just call int? to begin with.
210
211 * boot-9.scm (<, <=, =, >, >=): Definitions in terms of <?, <=?,
212 =?, >?, and >=? deleted; they're defined that way by libguile now.
213
99f97bfe
JB
214 * boot-9.scm (load): Simplified; primitive-load does most of this
215 work now.
216 (%load-announce-win): Removed; no longer used. Set %load-hook to
217 call %load-announce.
218
3afb28ce
GH
219Sun Oct 27 07:47:03 1996 Gary Houston <ghouston@actrix.gen.nz>
220
4fe3604d
JB
221 * boot-9.scm (stat:dev, stat:ino, stat:mode, stat:nlink, stat:uid,
222 stat:gid, stat:rdev, stat:size, stat:atime, stat:mtime,
223 stat:ctime, stat:blksize, stat:blocks) accessor functions for stat
224 components.
3afb28ce
GH
225 (file-is-directory?): use stat:type.
226
3065a62a
JB
227Fri Oct 25 03:34:47 1996 Jim Blandy <jimb@floss.cyclic.com>
228
229 * boot-9.scm (%read-sharp): Don't recognize the `#!' syntax here;
230 that's now taken care of in libguile, and in a way compatible with
231 SCSH (which this isn't).
232
e4c5095f
JB
233Mon Oct 21 18:52:36 1996 Jim Blandy <jimb@totoro.cyclic.com>
234
235 * boot-9.scm: Formatting tweaks.
236
1bb961a3
MD
237Fri Oct 18 01:03:08 1996 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
238
239 * boot-9.scm (handle-system-error): Added hooks before-error-hook,
240 after-error-hook, before-backtrace-hook and after-backtrace-hook
241 to the error handler. E.g.: fancy emacs support could plug into
242 these.
243 (save-stack): New function. The stack is now made differently
244 depending on the stack id. (The motivation is to make a better
245 choice regarding what stack frames to present to the user.)
246 (error-catching-loop): Stack handling code moved outside into
247 save-stack.
248
9a0d70e2
GH
249Thu Oct 17 20:33:08 1996 Gary Houston <ghouston@actrix.gen.nz>
250
d7189b49
GH
251 * Makefile.in (scm_files): add expect.scm.
252
253 * expect.scm: new file ported from guile-iii.
254
9a0d70e2
GH
255 * boot-9.scm: remove handle-system-error, after moving the code into
256 error-catching-loop.
257 Don't set 'throw-handler-default property on error keys.
258 Just interpret (almost) any throw with 4 args as an error throw.
259 Delete some try-load stuff that was already commented out.
260
35c5db87
GH
261 Second thoughts, keep handle-system-error but call it from
262 error-catching-loop.
263
d065b65f
JB
264Tue Oct 15 17:07:20 1996 Jim Blandy <jimb@floss.cyclic.com>
265
aa9576ad
JB
266 * boot-9.scm: Doc fixes.
267 (make-module): Rework for readability.
268 (make-root-module, make-scm-module): USES argument to make-module
269 should be '(), not #f.
270
d065b65f
JB
271 * boot-9.scm (try-load): %sys-load-path has been renamed to
272 primitive-load-path; adjust call here.
273
c01c94bf
MD
274Tue Oct 15 14:25:01 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
275
d065b65f 276 * boot-9.scm (signal-handler): Bugfix: Moved the recording of
c01c94bf
MD
277 the stack to the correct place: when it is decided to generate an
278 error-signal.
279
2dfc85c0
MD
280Mon Oct 14 22:20:30 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
281
282 * boot-9.scm (error-catching-loop, signal-handler,
283 handle-system-error): Backtracing now works for signals aswell;
284 Backtracing mechanism can now identify the stack root created by
285 start-stack so that the user isn't exposed to system stack frames.
286
84d8ad97
MD
287Mon Oct 14 06:05:42 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
288
289 * Makefile.in: Added threads.scm.
290
4f0292cf
MD
291Mon Oct 14 04:21:51 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
292
293 * debug.scm (make-enable, make-disable): Simplified.
294
295 * boot-9.scm: Renamed %%throw-handler-default -->
296 throw-handler-default.
297 ((handle-system-error key . arg-list)): Changed the way errors are
298 reported.
299 ((scm-style-repl)): Wrap up the call to eval in a start-stack
300 acro.
301 ((error-catching-loop thunk)): Introduce a lazy-catch into
302 error-catching-loop so that the stack can be captured.
303
1eaceb61
JB
304Thu Oct 10 22:27:32 1996 Jim Blandy <jimb@totoro.cyclic.com>
305
306 * mapping.scm (hash-table-mapping): Explicitly request that
307 make-vector fill new vectors with '(); this will make it easier to
308 port Guile Scheme code to other Schemes.
309 * boot-9.scm (make-print-style, make-print-table): Same.
310
6fa8995c
GH
311Sun Oct 6 03:54:59 1996 Gary Houston <ghouston@actrix.gen.nz>
312
313 * boot-9.scm (load): rewritten again.
314 Append "." to the default %load-path.
315 (feature?): new function: checks for a symbol in the features list.
316 (module-local-variable): remove apparently useless (caddr (list m v
317 ...))
318 (%load-announce): minor formatting change.
319 (file-exists?): use access? if posix is featured.
320 (file-is-directory?): use stat if i/o-extensions is featured.
321 (try-module-autoload module-name): use file-exists? before
322 file-is-directory?
323
8b4a21d1
MD
324Sat Oct 5 18:54:03 1996 Mikael Djurfeldt <mdj@kenneth>
325
8acae5bb
MD
326 * boot-9.scm: Added conditional loading of threads.scm.
327
328 * threads.scm: New file. Modified from the Cygnus-r0.3
329 distribution.
330
8b4a21d1
MD
331 * boot-9.scm (error-catching-loop): Added handling of key
332 `switch-repl'.
333
334 * boot-9.scm: Name change %%bad-throw --> bad-throw.
335
c90c9685
JB
336Wed Oct 2 23:38:44 1996 Jim Blandy <jimb@totoro.cyclic.com>
337
338 * boot-9.scm (make-record-type, record-constructor): Don't assume
339 the empty list is false when parsing the argument list.
340
341Mon Sep 30 22:15:50 1996 Jim Blandy <jimb@totoro.cyclic.com>
342
343 * boot-9.scm (signal-handler): Clean up logic.
344
345 * boot-9.scm (load): Assume %load-path is always bound.
346
5552355a
GH
347Sat Sep 28 00:15:37 1996 Gary Houston <ghouston@actrix.gen.nz>
348
349 * boot-9.scm (error): replace another throw with scm-error. Throw
350 to 'misc-error instead of 'error (no need to distinguish these.)
351 Don't set up 'error as a key.
352 Set up regex-error as a key, if regex is available.
353 (signal-handler): use scm-error, not throw.
354
7a818853 355 (%try-load, try-load-with-path, %load, load-with-path,
5552355a
GH
356 basic-try-load-with-path, basic-load-with-path,
357 try-load-module-with-path,load-module-with-path): deleted, since
358 they seem redundant.
359 (try-load): define using %try-load, not try-load-with-path.
7a818853 360 (load): rewritten. load tries to open the file directly and
5552355a
GH
361 with a .scm extension before searching the library directories
362 (should "." be added to %load-path? then load could still open
363 directly files starting with "/").
364 (try-module-autoload): use load, not load-with-path.
365 (%load-indent): deleted, -2 was causing errors.
366
367 (%read-sharp): use port-line, not line-number.
368
c90c9685
JB
369Fri Sep 27 16:23:51 1996 Jim Blandy <jimb@totoro.cyclic.com>
370
371 * boot-9.scm (%%bad-throw): Delete definition. 1) It's very
372 straightforward to provide the equivalent functionality using
373 (catch #t ...), so there's no need for the extra complexity. 2)
374 Outside the context of a read-eval-print loop (which Guile should
375 not require) it's not clear we should do anything more complicated
376 than print an error and exit; the user or REPL can establish
377 something better if it wants. 3) In that case, it's much more
378 robust to just do it in the C code.
379
855c0eac
GH
380Tue Sep 24 06:53:04 1996 Gary Houston <ghouston@actrix.gen.nz>
381
382 * boot-9.scm (%try-load): define using primitive-load. Previously
383 %try-load itself was the primitive.
384 (load-with-path): use scm-error instead of %load-announce-lossage.
385 Errors are thrown to 'misc-error instead of 'could-not-load.
386 (%load-announce-lossage): deleted.
387
a0c97697
MD
388Mon Sep 23 00:16:31 1996 Mikael Djurfeldt <mdj@kenneth>
389
390 * boot-9.scm (warn, scm-style-repl): Use C printer instead of `print'.
391 (make-record-type type-name fields): Temporarily remove support
392 for printing of records (not possible yet with C printer).
393
be2d2c70
GH
394Fri Sep 20 00:24:27 1996 Gary Houston <ghouston@actrix.gen.nz>
395
396 * boot-9.scm (file-exists?, file-is-directory): catch only
397 system-error, not every kind of error.
398 (scm-error): new procedure.
399
434bf5ce
JB
400Thu Sep 19 16:02:46 1996 Jim Blandy <jimb@totoro.cyclic.com>
401
402 * boot-9.scm: Formatting tweaks.
403
2194b6f0
GH
404Wed Sep 18 09:07:37 1996 Gary Houston <ghouston@actrix.gen.nz>
405
406 * boot-9.scm (%%handle-system-error key): remove the code for
407 SCM-style errors. handle the case that an unexpected number
408 of args are supplied.
409 (%%system-errors): removed.
410 (error): redefine using a throw with key and 4 args.
411 ('error): associate 'error, 'error-signal keys with
412 %%handle-system-error.
413 (%%default-error-handler): removed.
414 (signal-handler): throw with 4 args and use the error-signal key.
415 Create an error message instead of using numerical codes.
416 (%%bad-throw): call error instead of throw if key not found.
417
418Tue Sep 17 04:11:28 1996 Gary Houston <ghouston@actrix.gen.nz>
419
420 * boot-9.scm: initialize new error keys (see libguile/ChangeLog).
421 (%%handle-system-error key): check subr is not #f before printing.
422 Recognize %s (embed an argument using "display") and
423 %S (embed an argument using "write").
424
234f2da6
GH
425Sun Sep 15 03:55:35 1996 Gary Houston <ghouston@actrix.gen.nz>
426
427 * boot-9.scm (%%handle-system-error key): set args and rest to
428 the empty list if they are #f.
429 Initialize out-of-range as an error key.
430
e1724d20
GH
431Sat Sep 14 03:41:15 1996 Gary Houston <ghouston@actrix.gen.nz>
432
40c8906e
GH
433 * PLUGIN/REQ: remove the "ice-9 lgh" line which causes a cycle.
434
e1724d20
GH
435 * boot-9.scm: remove leading %% from references to '%%system-error.
436 (%%handle-system-error): don't pass all the thrown arguments when
437 aborting, just the key and subr.
438 Remove the code to "Install default handlers for built-in errors."
439 Remove the definition of the syserror procedure.
440 Associate 'numerical-overflow with default handler.
441
1a80fb07
MD
442Fri Sep 13 04:58:11 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
443
444 * boot-9.scm: Name change: value-ref --> local-ref
445 resolved-ref --> nested-ref Motivation: conformance to the other
446 dictionary operators: list-ref operates on list, vector-ref
447 operates on vector, nested-ref operates on nested namespace,
448 local-ref operates on the local nested namespace.
449
7cb1d4d3
GH
450Sat Sep 7 06:44:47 1996 Gary Houston <ghouston@actrix.gen.nz>
451
452 * boot-9.scm (%%handle-system-error): recognise errors thrown
453 by lgh-error (fill-message etc.)
9561554c 454 (fill-message): check first whether args is null.
a949b3f2 455 (fill-message): bug fix and check that args is a list.
7cb1d4d3 456
393ee9a8
JB
457Thu Sep 5 11:33:41 1996 Jim Blandy <jimb@floss.cyclic.com>
458
459 * boot-9.scm: %load-path is initialized in C code now.
460 (implementation-vicinity, parse-path): Deleted, along with code to
461 initialize %load-path.
462
463 * boot-9.scm (in-vicinity): If the vicinity doesn't end with a
464 "/", use one to separate it from the file.
465
e4ef46d4
JB
466Thu Aug 29 23:05:11 1996 Thomas Morgan <tmorgan@gnu.ai.mit.edu>
467
468 * boot-9.scm (%load-path): Add the site directory.
469 Add the directory named after the version number.
470 Prepend the version number to the other directories in the path.
471 Simplify by mapping the common prefix onto each item.
472 * Makefile.in (datadir, pkgdatadir, pkgverdatadir, subpkgdatadir,
473 sitedatadir): New definitions.
474 (libparent, libdir, install_path): Replaced by above.
475 (install): Create the above directories.
476 Put the source files into subpkgdatadir.
477 (uninstall): Remove the above directories.
478
00312aa3
JB
479Thu Aug 29 21:48:47 1996 Jim Blandy <jimb@floss.cyclic.com>
480
481 Don't use the PLUGIN system to gather information for the
482 Makefile's distribution and installation targets; just put it all
483 in the Makefile directly.
484 * PLUGIN/this.configure (scm_files, aux_files): Remove sections
485 for these.
486 * configure.in: Remove code that gets and substitutes scm_files and
487 aux_files.
488 * Makefile.in (scm_files, aux_files): Write out the list of files
489 here, where people expect to find them.
490
96a8aaf3
MD
491Fri Aug 23 06:44:36 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
492
493 * boot-9.scm: Preliminary solution: optionally load the debug
7685f77c 494 module. Changed "gls" to "guile1.0b3".
96a8aaf3
MD
495
496 * debug.scm: New file: debug extensions.
497
4e378733
MD
498Wed Aug 21 13:06:56 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
499
500 * boot-9.scm (print-vector): Renamed weak-hash-table? -->
501 weak-key-hash-table?. (Again!)
502
0190d683
MD
503Tue Aug 20 07:31:39 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
504
505 * boot-9.scm (print-vector, macro-table, xformer-table):
506 Renamed weak-hash-table --> weak-key-hash-table.
507
508 * poe.scm (funcq-memo): Renamed weak-hash-table -->
509 weak-key-hash-table.
510
8b13c6b3
GH
511Sat Aug 3 06:16:35 1996 Gary Houston <ghouston@actrix.gen.nz>
512
513 * boot-9.scm (*null-device*): global constant from goonix.
514 (move->fdes): adjusted for boolean primitive-move->fdes. return
515 the modified port, always set revealed count to 1 (SCSH compatible).
516 (release-port-handle port): from goonix (SCSH compatible).
517 (%open-file): removed.
518 (open-input-file, open-output-file, file-exists?, file-is-directory?):
519 modified for open-file change (does not return #f).
520
a44a755d
JB
521Thu Aug 1 02:52:42 1996 Jim Blandy <jimb@totoro.cyclic.com>
522
523 * Makefile.in (dist-dir): New target for new dist system.
524 (manifest): Deleted.
525 * PLUGIN/this.configure (aux_files): Removed PLUGIN; it's a
526 directory, and needs special treatment in the dist-dir target.
527
02b754d3
GH
528Thu Aug 1 09:00:21 1996 Gary Houston <ghouston@actrix.gen.nz>
529
530 * boot-9.scm: remove the wrappers for '%' system primitives,
531 now that they throw errors directly.
532 remove make-simple-wrapper and similar functions.
533 protect a call to getenv which may now throw an exception.
534
535Wed Jul 31 23:44:42 1996 Gary Houston <ghouston@actrix.gen.nz>
536
537 * boot-9.scm (false-if-exception): new macro.
538
0f2d19dd
JB
539Fri Apr 19 13:53:08 1996 Tom Lord <lord@beehive>
540
541 * The more things change...
542
543