summaryrefslogtreecommitdiff
path: root/ice-9/r4rs.scm
Commit message (Collapse)AuthorAgeFilesLines
* * and-let-star.scm, debug.scm, debugger.scm, history.scm,Martin Grabmüller2001-07-191-1/+1
| | | | | lineio.scm, null.scm, optargs.scm, r4rs.scm, r5rs.scm, receive.scm, safe-r5rs.scm, streams.scm: Updated copyright notice.
* Added exception notice to all files.Marius Vollmer2001-06-031-0/+24
| | | | | | (module-export!): Revert 2001-06-02 change. It caused more problems than it solved by accidentally re-exporting importing bindings once in a while.
* * r4rs.scm (call-with-values): New definition, defers toMarius Vollmer2001-03-261-0/+2
| | | | @call-with-values.
* * r4rs.scm (close-input-port, close-output-port): Removed.Mikael Djurfeldt2000-04-161-3/+1
|
* * slib.scm: Rename software-type to slib:software-type and make itGreg J. Badros2000-02-141-1/+68
| | | | | | | public. * r4rs.scm: Added documentation; largely cut and pasted from R4RS info pages.
* * boot-9.scm, debug.scm, expect.scm, hcons.scm, lineio.scm,Jim Blandy1998-10-191-1/+1
| | | | r4rs.scm, slib.scm, threads.scm: Update copyright years.
* * r4rs.scm (OPEN_READ, OPEN_WRITE, OPEN_BOTH): Don't botherJim Blandy1998-10-121-13/+11
| | | | | testing software-type here. That's the least of our Windows porting issues, and it's done wrong anyway.
* * r4rs.scm (apply): Set name property to 'apply.Mikael Djurfeldt1997-09-171-0/+1
|
* * COPYING, boot-9.scm, debug.scm, emacs.scm, expect.scm, gtcl.scm,Jim Blandy1997-05-261-1/+2
| | | | | | gwish.scm, hcons.scm, lineio.scm, mapping.scm, nonblocking.scm, oldprint.scm, poe.scm, r4rs.scm, source.scm, tags.scm, test.scm, threads.scm: New address for FSF.
* * slib.scm: update read usage.Gary Houston1997-03-081-6/+2
| | | | | | | | | | * r4rs.scm: update primitive-load usage. Don't define read-sharp. * boot-9.scm: use read-hash-extend to install extra read syntax. (read-sharp): removed. Adjust usage of primitive-load-path, read, which no longer take case_i or read-sharp arguments.
* * boot-9.scm: Removed the old printer code.Mikael Djurfeldt1997-03-011-3/+3
| | | | | | | | * r4rs.scm (apply, call-with-current-continuation): Added comment explaining why apply and call/cc need to be closures. * boot-9.scm (apply, call-with-current-continuation): Bugfix: Removed. These definitions are already present in r4rs.scm.
* * r4rs.scm (%load-verbosely): Reverted change toMikael Djurfeldt1997-02-271-1/+1
| | | | | | `module-defined?', since the module system isn't bootstrapped when we load r4rs.scm. This is just a temporary fix to make the repository version runnable.
* * boot-9.scm (module-defined?): New function.Marius Vollmer1997-02-271-1/+1
| | | | | | | | | (macroexpand-1, macroexpand): Use local-ref instead of defined? and eval. * r4rs.scm (%load-verbosely): Use "module-defined?" instead of "defined?". * slib.scm (defined?): New function to take the place of the builtin "defined?". It allways examines the slib module.
* * boot-9.scm (macroexpand-1, macroexpand), slib.scmMarius Vollmer1996-11-271-1/+1
| | | | | (slib:features), r4rs.scm (%load-verbosely): "defined?" is now a function, use it accordingly.
* Get Guile to be a little less chatty by default. The new userJim Blandy1996-10-291-0/+149
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.