set show-all-prompts to #t by default

svn: r4481
This commit is contained in:
Eli Barzilay 2006-10-04 19:14:59 +00:00
parent fd5fdceaaa
commit e7d9245a18
2 changed files with 9 additions and 6 deletions

View File

@ -35,13 +35,16 @@ The reading facility that the new input port provides can be
customized with these parameters:
> show-all-prompts
If #f (the default), no prompt is shown until you write input that
is completely readable. For example, when you type
If #f, no prompt is shown until you write input that is completely
readable. For example, when you type
(foo bar) (+ 1
2)
you will see a single prompt in the beginning. If this parameter is
set to #t, you will see the second prompt when reading the second
expression.
you will see a single prompt in the beginning.
The problem is that the first expression can be `(read-line)' which
normally consumes the rest of the text on the *same* line. The
default value of this parameter is therefore #t, making it mimic
plain I/O interactions.
> max-history
The number of history entries to save. Defaults to 100.

View File

@ -2,7 +2,7 @@
(require (lib "readline.ss" "readline") (lib "file.ss"))
;; configuration
(define show-all-prompts (make-parameter #f))
(define show-all-prompts (make-parameter #t))
(define max-history (make-parameter 100))
(define keep-duplicates (make-parameter #f))
(define keep-blanks (make-parameter #f))