1996-10-28 23:06:04 +00:00
|
|
|
Mon Oct 28 17:56:29 1996 Jim Blandy <jimb@floss.cyclic.com>
|
|
|
|
|
|
1996-10-29 03:59:48 +00:00
|
|
|
* boot-9.scm (load-from-path): New function.
|
|
|
|
|
|
|
|
|
|
* boot-9.scm (try-load, basic-try-load, try-load-module,
|
|
|
|
|
try-load): Deleted. I don't think they're being used.
|
|
|
|
|
|
1996-10-29 03:48:55 +00:00
|
|
|
* Makefile.in (scm_files): Add r4rs.scm and test.scm to this list,
|
|
|
|
|
so they'll get distributed.
|
|
|
|
|
|
|
|
|
|
Get Guile to be a little less chatty by default. The new user
|
|
|
|
|
should see as little clutter as possible.
|
|
|
|
|
* r4rs.scm (%load-verbosely): Make this #f by default.
|
|
|
|
|
* boot-9.scm (scm-repl-verbose): Make this #f by default.
|
|
|
|
|
(scm-style-repl): Don't run 'pk' on the value passed to quit.
|
|
|
|
|
|
|
|
|
|
* r4rs.scm: New file.
|
|
|
|
|
* boot-9.scm: Load r4rs.scm, first thing.
|
|
|
|
|
(OPEN_READ, OPEN_WRITE, OPEN_BOTH, *null-device*, open-input-file,
|
|
|
|
|
open-output-file, open-io-file, close-input-port,
|
|
|
|
|
close-output-port, close-io-port, call-with-input-file,
|
|
|
|
|
call-with-output-file, with-input-from-port, with-output-to-port,
|
|
|
|
|
with-error-to-port, with-input-from-file, with-output-to-file,
|
|
|
|
|
with-error-to-file, with-input-from-string, with-output-to-string,
|
|
|
|
|
with-error-to-string, the-eof-object): Definitions moved to
|
|
|
|
|
r4rs.scm. Not all of them are R4RS, but those that are use those
|
|
|
|
|
that are not.
|
|
|
|
|
(load, %load-verbosely, %load-announce): Moved, along with code to
|
|
|
|
|
set %load-hook, to r4rs.scm.
|
|
|
|
|
|
|
|
|
|
* test.scm: New file.
|
|
|
|
|
|
|
|
|
|
* boot-9.scm (integer?): Definition deleted, in favor of the one
|
|
|
|
|
present in libguile (which used to be called int?). I have no
|
|
|
|
|
idea why integer? didn't just call int? to begin with.
|
|
|
|
|
|
|
|
|
|
* boot-9.scm (<, <=, =, >, >=): Definitions in terms of <?, <=?,
|
|
|
|
|
=?, >?, and >=? deleted; they're defined that way by libguile now.
|
|
|
|
|
|
1996-10-28 23:06:04 +00:00
|
|
|
* boot-9.scm (load): Simplified; primitive-load does most of this
|
|
|
|
|
work now.
|
|
|
|
|
(%load-announce-win): Removed; no longer used. Set %load-hook to
|
|
|
|
|
call %load-announce.
|
|
|
|
|
|
1996-10-27 23:26:35 +00:00
|
|
|
Sun Oct 27 07:47:03 1996 Gary Houston <ghouston@actrix.gen.nz>
|
|
|
|
|
|
1996-10-28 19:37:04 +00:00
|
|
|
* boot-9.scm (stat:dev, stat:ino, stat:mode, stat:nlink, stat:uid,
|
|
|
|
|
stat:gid, stat:rdev, stat:size, stat:atime, stat:mtime,
|
|
|
|
|
stat:ctime, stat:blksize, stat:blocks) accessor functions for stat
|
|
|
|
|
components.
|
1996-10-27 23:26:35 +00:00
|
|
|
(file-is-directory?): use stat:type.
|
|
|
|
|
|
1996-10-25 08:40:27 +00:00
|
|
|
Fri Oct 25 03:34:47 1996 Jim Blandy <jimb@floss.cyclic.com>
|
|
|
|
|
|
|
|
|
|
* boot-9.scm (%read-sharp): Don't recognize the `#!' syntax here;
|
|
|
|
|
that's now taken care of in libguile, and in a way compatible with
|
|
|
|
|
SCSH (which this isn't).
|
|
|
|
|
|
1996-10-21 23:54:02 +00:00
|
|
|
Mon Oct 21 18:52:36 1996 Jim Blandy <jimb@totoro.cyclic.com>
|
|
|
|
|
|
|
|
|
|
* boot-9.scm: Formatting tweaks.
|
|
|
|
|
|
1996-10-17 23:43:30 +00:00
|
|
|
Fri Oct 18 01:03:08 1996 Mikael Djurfeldt <mdj@mdj.nada.kth.se>
|
|
|
|
|
|
|
|
|
|
* boot-9.scm (handle-system-error): Added hooks before-error-hook,
|
|
|
|
|
after-error-hook, before-backtrace-hook and after-backtrace-hook
|
|
|
|
|
to the error handler. E.g.: fancy emacs support could plug into
|
|
|
|
|
these.
|
|
|
|
|
(save-stack): New function. The stack is now made differently
|
|
|
|
|
depending on the stack id. (The motivation is to make a better
|
|
|
|
|
choice regarding what stack frames to present to the user.)
|
|
|
|
|
(error-catching-loop): Stack handling code moved outside into
|
|
|
|
|
save-stack.
|
|
|
|
|
|
1996-10-17 21:45:04 +00:00
|
|
|
Thu Oct 17 20:33:08 1996 Gary Houston <ghouston@actrix.gen.nz>
|
|
|
|
|
|
1996-10-17 23:21:10 +00:00
|
|
|
* Makefile.in (scm_files): add expect.scm.
|
|
|
|
|
|
|
|
|
|
* expect.scm: new file ported from guile-iii.
|
|
|
|
|
|
1996-10-17 21:45:04 +00:00
|
|
|
* boot-9.scm: remove handle-system-error, after moving the code into
|
|
|
|
|
error-catching-loop.
|
|
|
|
|
Don't set 'throw-handler-default property on error keys.
|
|
|
|
|
Just interpret (almost) any throw with 4 args as an error throw.
|
|
|
|
|
Delete some try-load stuff that was already commented out.
|
|
|
|
|
|
1996-10-17 21:56:22 +00:00
|
|
|
Second thoughts, keep handle-system-error but call it from
|
|
|
|
|
error-catching-loop.
|
|
|
|
|
|
1996-10-15 22:31:06 +00:00
|
|
|
Tue Oct 15 17:07:20 1996 Jim Blandy <jimb@floss.cyclic.com>
|
|
|
|
|
|
1996-10-16 02:22:21 +00:00
|
|
|
* boot-9.scm: Doc fixes.
|
|
|
|
|
(make-module): Rework for readability.
|
|
|
|
|
(make-root-module, make-scm-module): USES argument to make-module
|
|
|
|
|
should be '(), not #f.
|
|
|
|
|
|
1996-10-15 22:31:06 +00:00
|
|
|
* boot-9.scm (try-load): %sys-load-path has been renamed to
|
|
|
|
|
primitive-load-path; adjust call here.
|
|
|
|
|
|
1996-10-15 12:27:01 +00:00
|
|
|
Tue Oct 15 14:25:01 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
|
|
|
|
|
|
1996-10-15 22:31:06 +00:00
|
|
|
* boot-9.scm (signal-handler): Bugfix: Moved the recording of
|
1996-10-15 12:27:01 +00:00
|
|
|
the stack to the correct place: when it is decided to generate an
|
|
|
|
|
error-signal.
|
|
|
|
|
|
1996-10-14 20:29:16 +00:00
|
|
|
Mon Oct 14 22:20:30 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
|
|
|
|
|
|
|
|
|
|
* boot-9.scm (error-catching-loop, signal-handler,
|
|
|
|
|
handle-system-error): Backtracing now works for signals aswell;
|
|
|
|
|
Backtracing mechanism can now identify the stack root created by
|
|
|
|
|
start-stack so that the user isn't exposed to system stack frames.
|
|
|
|
|
|
1996-10-14 04:08:01 +00:00
|
|
|
Mon Oct 14 06:05:42 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
|
|
|
|
|
|
|
|
|
|
* Makefile.in: Added threads.scm.
|
|
|
|
|
|
1996-10-14 03:28:57 +00:00
|
|
|
Mon Oct 14 04:21:51 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
|
|
|
|
|
|
|
|
|
|
* debug.scm (make-enable, make-disable): Simplified.
|
|
|
|
|
|
|
|
|
|
* boot-9.scm: Renamed %%throw-handler-default -->
|
|
|
|
|
throw-handler-default.
|
|
|
|
|
((handle-system-error key . arg-list)): Changed the way errors are
|
|
|
|
|
reported.
|
|
|
|
|
((scm-style-repl)): Wrap up the call to eval in a start-stack
|
|
|
|
|
acro.
|
|
|
|
|
((error-catching-loop thunk)): Introduce a lazy-catch into
|
|
|
|
|
error-catching-loop so that the stack can be captured.
|
|
|
|
|
|
1996-10-11 07:58:43 +00:00
|
|
|
Thu Oct 10 22:27:32 1996 Jim Blandy <jimb@totoro.cyclic.com>
|
|
|
|
|
|
|
|
|
|
* mapping.scm (hash-table-mapping): Explicitly request that
|
|
|
|
|
make-vector fill new vectors with '(); this will make it easier to
|
|
|
|
|
port Guile Scheme code to other Schemes.
|
|
|
|
|
* boot-9.scm (make-print-style, make-print-table): Same.
|
|
|
|
|
|
1996-10-06 06:33:11 +00:00
|
|
|
Sun Oct 6 03:54:59 1996 Gary Houston <ghouston@actrix.gen.nz>
|
|
|
|
|
|
|
|
|
|
* boot-9.scm (load): rewritten again.
|
|
|
|
|
Append "." to the default %load-path.
|
|
|
|
|
(feature?): new function: checks for a symbol in the features list.
|
|
|
|
|
(module-local-variable): remove apparently useless (caddr (list m v
|
|
|
|
|
...))
|
|
|
|
|
(%load-announce): minor formatting change.
|
|
|
|
|
(file-exists?): use access? if posix is featured.
|
|
|
|
|
(file-is-directory?): use stat if i/o-extensions is featured.
|
|
|
|
|
(try-module-autoload module-name): use file-exists? before
|
|
|
|
|
file-is-directory?
|
|
|
|
|
|
1996-10-05 16:55:22 +00:00
|
|
|
Sat Oct 5 18:54:03 1996 Mikael Djurfeldt <mdj@kenneth>
|
|
|
|
|
|
1996-10-05 17:48:40 +00:00
|
|
|
* boot-9.scm: Added conditional loading of threads.scm.
|
|
|
|
|
|
|
|
|
|
* threads.scm: New file. Modified from the Cygnus-r0.3
|
|
|
|
|
distribution.
|
|
|
|
|
|
1996-10-05 16:55:22 +00:00
|
|
|
* boot-9.scm (error-catching-loop): Added handling of key
|
|
|
|
|
`switch-repl'.
|
|
|
|
|
|
|
|
|
|
* boot-9.scm: Name change %%bad-throw --> bad-throw.
|
|
|
|
|
|
1996-10-03 05:50:40 +00:00
|
|
|
Wed Oct 2 23:38:44 1996 Jim Blandy <jimb@totoro.cyclic.com>
|
|
|
|
|
|
|
|
|
|
* boot-9.scm (make-record-type, record-constructor): Don't assume
|
|
|
|
|
the empty list is false when parsing the argument list.
|
|
|
|
|
|
|
|
|
|
Mon Sep 30 22:15:50 1996 Jim Blandy <jimb@totoro.cyclic.com>
|
|
|
|
|
|
|
|
|
|
* boot-9.scm (signal-handler): Clean up logic.
|
|
|
|
|
|
|
|
|
|
* boot-9.scm (load): Assume %load-path is always bound.
|
|
|
|
|
|
* boot-9.scm (error): replace another throw with scm-error. Throw
to 'misc-error instead of 'error (no need to distinguish these.)
Don't set up 'error as a key.
Set up regex-error as a key, if regex is available.
(signal-handler): use scm-error, not throw.
(%try-load, try-load-with-path, %load, load-with-path,
basic-try-load-with-path, basic-load-with-path,
try-load-module-with-path,load-module-with-path): deleted, since
they seem redundant.
(try-load): define using %try-load, not try-load-with-path.
(load): rewritten. load tries to open the file directly and
with a .scm extension before searching the library directories
(should "." be added to %load-path? then load could still open
directly files starting with "/").
(try-module-autoload): use load, not load-with-path.
(%load-indent): deleted, -2 was causing errors.
(%read-sharp): use port-line, not line-number.
1996-09-28 19:38:45 +00:00
|
|
|
Sat Sep 28 00:15:37 1996 Gary Houston <ghouston@actrix.gen.nz>
|
|
|
|
|
|
|
|
|
|
* boot-9.scm (error): replace another throw with scm-error. Throw
|
|
|
|
|
to 'misc-error instead of 'error (no need to distinguish these.)
|
|
|
|
|
Don't set up 'error as a key.
|
|
|
|
|
Set up regex-error as a key, if regex is available.
|
|
|
|
|
(signal-handler): use scm-error, not throw.
|
|
|
|
|
|
|
|
|
|
* (%try-load, try-load-with-path, %load, load-with-path,
|
|
|
|
|
basic-try-load-with-path, basic-load-with-path,
|
|
|
|
|
try-load-module-with-path,load-module-with-path): deleted, since
|
|
|
|
|
they seem redundant.
|
|
|
|
|
(try-load): define using %try-load, not try-load-with-path.
|
|
|
|
|
* (load): rewritten. load tries to open the file directly and
|
|
|
|
|
with a .scm extension before searching the library directories
|
|
|
|
|
(should "." be added to %load-path? then load could still open
|
|
|
|
|
directly files starting with "/").
|
|
|
|
|
(try-module-autoload): use load, not load-with-path.
|
|
|
|
|
(%load-indent): deleted, -2 was causing errors.
|
|
|
|
|
|
|
|
|
|
(%read-sharp): use port-line, not line-number.
|
|
|
|
|
|
1996-10-03 05:50:40 +00:00
|
|
|
Fri Sep 27 16:23:51 1996 Jim Blandy <jimb@totoro.cyclic.com>
|
|
|
|
|
|
|
|
|
|
* boot-9.scm (%%bad-throw): Delete definition. 1) It's very
|
|
|
|
|
straightforward to provide the equivalent functionality using
|
|
|
|
|
(catch #t ...), so there's no need for the extra complexity. 2)
|
|
|
|
|
Outside the context of a read-eval-print loop (which Guile should
|
|
|
|
|
not require) it's not clear we should do anything more complicated
|
|
|
|
|
than print an error and exit; the user or REPL can establish
|
|
|
|
|
something better if it wants. 3) In that case, it's much more
|
|
|
|
|
robust to just do it in the C code.
|
|
|
|
|
|
1996-09-24 07:19:51 +00:00
|
|
|
Tue Sep 24 06:53:04 1996 Gary Houston <ghouston@actrix.gen.nz>
|
|
|
|
|
|
|
|
|
|
* boot-9.scm (%try-load): define using primitive-load. Previously
|
|
|
|
|
%try-load itself was the primitive.
|
|
|
|
|
(load-with-path): use scm-error instead of %load-announce-lossage.
|
|
|
|
|
Errors are thrown to 'misc-error instead of 'could-not-load.
|
|
|
|
|
(%load-announce-lossage): deleted.
|
|
|
|
|
|
1996-09-22 22:51:18 +00:00
|
|
|
Mon Sep 23 00:16:31 1996 Mikael Djurfeldt <mdj@kenneth>
|
|
|
|
|
|
|
|
|
|
* boot-9.scm (warn, scm-style-repl): Use C printer instead of `print'.
|
|
|
|
|
(make-record-type type-name fields): Temporarily remove support
|
|
|
|
|
for printing of records (not possible yet with C printer).
|
|
|
|
|
|
1996-09-20 09:02:14 +00:00
|
|
|
Fri Sep 20 00:24:27 1996 Gary Houston <ghouston@actrix.gen.nz>
|
|
|
|
|
|
|
|
|
|
* boot-9.scm (file-exists?, file-is-directory): catch only
|
|
|
|
|
system-error, not every kind of error.
|
|
|
|
|
(scm-error): new procedure.
|
|
|
|
|
|
1996-09-19 21:03:43 +00:00
|
|
|
Thu Sep 19 16:02:46 1996 Jim Blandy <jimb@totoro.cyclic.com>
|
|
|
|
|
|
|
|
|
|
* boot-9.scm: Formatting tweaks.
|
|
|
|
|
|
1996-09-19 09:04:55 +00:00
|
|
|
Wed Sep 18 09:07:37 1996 Gary Houston <ghouston@actrix.gen.nz>
|
|
|
|
|
|
|
|
|
|
* boot-9.scm (%%handle-system-error key): remove the code for
|
|
|
|
|
SCM-style errors. handle the case that an unexpected number
|
|
|
|
|
of args are supplied.
|
|
|
|
|
(%%system-errors): removed.
|
|
|
|
|
(error): redefine using a throw with key and 4 args.
|
|
|
|
|
('error): associate 'error, 'error-signal keys with
|
|
|
|
|
%%handle-system-error.
|
|
|
|
|
(%%default-error-handler): removed.
|
|
|
|
|
(signal-handler): throw with 4 args and use the error-signal key.
|
|
|
|
|
Create an error message instead of using numerical codes.
|
|
|
|
|
(%%bad-throw): call error instead of throw if key not found.
|
|
|
|
|
|
|
|
|
|
Tue Sep 17 04:11:28 1996 Gary Houston <ghouston@actrix.gen.nz>
|
|
|
|
|
|
|
|
|
|
* boot-9.scm: initialize new error keys (see libguile/ChangeLog).
|
|
|
|
|
(%%handle-system-error key): check subr is not #f before printing.
|
|
|
|
|
Recognize %s (embed an argument using "display") and
|
|
|
|
|
%S (embed an argument using "write").
|
|
|
|
|
|
1996-09-15 06:36:11 +00:00
|
|
|
Sun Sep 15 03:55:35 1996 Gary Houston <ghouston@actrix.gen.nz>
|
|
|
|
|
|
|
|
|
|
* boot-9.scm (%%handle-system-error key): set args and rest to
|
|
|
|
|
the empty list if they are #f.
|
|
|
|
|
Initialize out-of-range as an error key.
|
|
|
|
|
|
1996-09-14 07:47:50 +00:00
|
|
|
Sat Sep 14 03:41:15 1996 Gary Houston <ghouston@actrix.gen.nz>
|
|
|
|
|
|
1996-09-14 09:53:20 +00:00
|
|
|
* PLUGIN/REQ: remove the "ice-9 lgh" line which causes a cycle.
|
|
|
|
|
|
1996-09-14 07:47:50 +00:00
|
|
|
* boot-9.scm: remove leading %% from references to '%%system-error.
|
|
|
|
|
(%%handle-system-error): don't pass all the thrown arguments when
|
|
|
|
|
aborting, just the key and subr.
|
|
|
|
|
Remove the code to "Install default handlers for built-in errors."
|
|
|
|
|
Remove the definition of the syserror procedure.
|
|
|
|
|
Associate 'numerical-overflow with default handler.
|
|
|
|
|
|
1996-09-13 03:02:53 +00:00
|
|
|
Fri Sep 13 04:58:11 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
|
|
|
|
|
|
|
|
|
|
* boot-9.scm: Name change: value-ref --> local-ref
|
|
|
|
|
resolved-ref --> nested-ref Motivation: conformance to the other
|
|
|
|
|
dictionary operators: list-ref operates on list, vector-ref
|
|
|
|
|
operates on vector, nested-ref operates on nested namespace,
|
|
|
|
|
local-ref operates on the local nested namespace.
|
|
|
|
|
|
1996-09-07 20:48:45 +00:00
|
|
|
Sat Sep 7 06:44:47 1996 Gary Houston <ghouston@actrix.gen.nz>
|
|
|
|
|
|
|
|
|
|
* boot-9.scm (%%handle-system-error): recognise errors thrown
|
|
|
|
|
by lgh-error (fill-message etc.)
|
1996-09-07 21:34:09 +00:00
|
|
|
(fill-message): check first whether args is null.
|
1996-09-07 21:49:23 +00:00
|
|
|
(fill-message): bug fix and check that args is a list.
|
1996-09-07 20:48:45 +00:00
|
|
|
|
1996-09-05 16:53:17 +00:00
|
|
|
Thu Sep 5 11:33:41 1996 Jim Blandy <jimb@floss.cyclic.com>
|
|
|
|
|
|
|
|
|
|
* boot-9.scm: %load-path is initialized in C code now.
|
|
|
|
|
(implementation-vicinity, parse-path): Deleted, along with code to
|
|
|
|
|
initialize %load-path.
|
|
|
|
|
|
|
|
|
|
* boot-9.scm (in-vicinity): If the vicinity doesn't end with a
|
|
|
|
|
"/", use one to separate it from the file.
|
|
|
|
|
|
1996-08-30 21:15:31 +00:00
|
|
|
Thu Aug 29 23:05:11 1996 Thomas Morgan <tmorgan@gnu.ai.mit.edu>
|
|
|
|
|
|
|
|
|
|
* boot-9.scm (%load-path): Add the site directory.
|
|
|
|
|
Add the directory named after the version number.
|
|
|
|
|
Prepend the version number to the other directories in the path.
|
|
|
|
|
Simplify by mapping the common prefix onto each item.
|
|
|
|
|
* Makefile.in (datadir, pkgdatadir, pkgverdatadir, subpkgdatadir,
|
|
|
|
|
sitedatadir): New definitions.
|
|
|
|
|
(libparent, libdir, install_path): Replaced by above.
|
|
|
|
|
(install): Create the above directories.
|
|
|
|
|
Put the source files into subpkgdatadir.
|
|
|
|
|
(uninstall): Remove the above directories.
|
|
|
|
|
|
1996-08-30 03:13:07 +00:00
|
|
|
Thu Aug 29 21:48:47 1996 Jim Blandy <jimb@floss.cyclic.com>
|
|
|
|
|
|
|
|
|
|
Don't use the PLUGIN system to gather information for the
|
|
|
|
|
Makefile's distribution and installation targets; just put it all
|
|
|
|
|
in the Makefile directly.
|
|
|
|
|
* PLUGIN/this.configure (scm_files, aux_files): Remove sections
|
|
|
|
|
for these.
|
|
|
|
|
* configure.in: Remove code that gets and substitutes scm_files and
|
|
|
|
|
aux_files.
|
|
|
|
|
* Makefile.in (scm_files, aux_files): Write out the list of files
|
|
|
|
|
here, where people expect to find them.
|
|
|
|
|
|
1996-08-23 04:54:08 +00:00
|
|
|
Fri Aug 23 06:44:36 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
|
|
|
|
|
|
|
|
|
|
* boot-9.scm: Preliminary solution: optionally load the debug
|
1996-08-23 04:55:31 +00:00
|
|
|
module. Changed "gls" to "guile1.0b3".
|
1996-08-23 04:54:08 +00:00
|
|
|
|
|
|
|
|
* debug.scm: New file: debug extensions.
|
|
|
|
|
|
1996-08-21 11:11:20 +00:00
|
|
|
Wed Aug 21 13:06:56 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
|
|
|
|
|
|
|
|
|
|
* boot-9.scm (print-vector): Renamed weak-hash-table? -->
|
|
|
|
|
weak-key-hash-table?. (Again!)
|
|
|
|
|
|
1996-08-20 16:57:13 +00:00
|
|
|
Tue Aug 20 07:31:39 1996 Mikael Djurfeldt <mdj@woody.nada.kth.se>
|
|
|
|
|
|
|
|
|
|
* boot-9.scm (print-vector, macro-table, xformer-table):
|
|
|
|
|
Renamed weak-hash-table --> weak-key-hash-table.
|
|
|
|
|
|
|
|
|
|
* poe.scm (funcq-memo): Renamed weak-hash-table -->
|
|
|
|
|
weak-key-hash-table.
|
|
|
|
|
|
1996-08-04 22:32:07 +00:00
|
|
|
Sat Aug 3 06:16:35 1996 Gary Houston <ghouston@actrix.gen.nz>
|
|
|
|
|
|
|
|
|
|
* boot-9.scm (*null-device*): global constant from goonix.
|
|
|
|
|
(move->fdes): adjusted for boolean primitive-move->fdes. return
|
|
|
|
|
the modified port, always set revealed count to 1 (SCSH compatible).
|
|
|
|
|
(release-port-handle port): from goonix (SCSH compatible).
|
|
|
|
|
(%open-file): removed.
|
|
|
|
|
(open-input-file, open-output-file, file-exists?, file-is-directory?):
|
|
|
|
|
modified for open-file change (does not return #f).
|
|
|
|
|
|
1996-08-01 08:38:52 +00:00
|
|
|
Thu Aug 1 02:52:42 1996 Jim Blandy <jimb@totoro.cyclic.com>
|
|
|
|
|
|
|
|
|
|
* Makefile.in (dist-dir): New target for new dist system.
|
|
|
|
|
(manifest): Deleted.
|
|
|
|
|
* PLUGIN/this.configure (aux_files): Removed PLUGIN; it's a
|
|
|
|
|
directory, and needs special treatment in the dist-dir target.
|
|
|
|
|
|
1996-08-02 23:26:33 +00:00
|
|
|
Thu Aug 1 09:00:21 1996 Gary Houston <ghouston@actrix.gen.nz>
|
|
|
|
|
|
|
|
|
|
* boot-9.scm: remove the wrappers for '%' system primitives,
|
|
|
|
|
now that they throw errors directly.
|
|
|
|
|
remove make-simple-wrapper and similar functions.
|
|
|
|
|
protect a call to getenv which may now throw an exception.
|
|
|
|
|
|
|
|
|
|
Wed Jul 31 23:44:42 1996 Gary Houston <ghouston@actrix.gen.nz>
|
|
|
|
|
|
|
|
|
|
* boot-9.scm (false-if-exception): new macro.
|
|
|
|
|
|
1996-07-25 22:56:11 +00:00
|
|
|
Fri Apr 19 13:53:08 1996 Tom Lord <lord@beehive>
|
|
|
|
|
|
|
|
|
|
* The more things change...
|
|
|
|
|
|
|
|
|
|
|