summaryrefslogtreecommitdiff
path: root/module/ice-9/buffered-input.scm
AgeCommit message (Collapse)AuthorFilesLines
2010-10-05bugfixes and simplifications to ice-9 buffered-input.Andy Wingo1-26/+20
* module/ice-9/buffered-input.scm (make-buffered-input-port): Simplify, and fix one case in which we would buffer the EOF object.
2010-07-13ctrl-d with readline exits one recursive repl instanceAndy Wingo1-1/+4
* module/ice-9/buffered-input.scm (make-buffered-input-port): Instead of always returning EOF once EOF is seen once, call the producer again. Allows Ctrl-D to cause one EOF at the REPL, returning once from a recursive edit, but input continues normally. Thanks to Andrew Bagdanov for a clue that led to the fix.
2009-06-17Change Guile license to LGPLv3+Neil Jerram1-1/+1
(Not quite finished, the following will be done tomorrow. module/srfi/*.scm module/rnrs/*.scm module/scripts/*.scm testsuite/*.scm guile-readline/* )
2008-11-01move ice-9/ and oop/ under module/Andy Wingo1-0/+112
Moved ice-9/ and oop/ under module/, with the idea being that we have only scheme under module/. Adjusted configure.in and Makefile.am appropriately. Put oop/ at the end of the compilation order.