Get Guile to be a little less chatty by default. The new user
authorJim Blandy <jimb@red-bean.com>
Tue, 29 Oct 1996 03:47:36 +0000 (03:47 +0000)
committerJim Blandy <jimb@red-bean.com>
Tue, 29 Oct 1996 03:47:36 +0000 (03:47 +0000)
commit79451588c7f1cee6169f0062d0f102a6cd4d2068
treebc762c2d3120bc8daa1673855e7c16d345cebc5a
parent93d4a182b187efda1963e06af4f801a37fc08dc6
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.

* 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.
ice-9/boot-9.scm