mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-05 23:20:38 +02:00
* Don't set continuation flag for leading whitespace.
This commit is contained in:
parent
66418d3465
commit
403a334593
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2001-03-07 Neil Jerram <neil@ossau.uklinux.net>
|
||||||
|
|
||||||
|
* buffered-input.scm (make-line-buffered-input-port): Don't set
|
||||||
|
the continuation flag for leading whitespace. Thanks to Dirk
|
||||||
|
Herrmann for the suggestion.
|
||||||
|
|
||||||
2001-03-05 Neil Jerram <neil@ossau.uklinux.net>
|
2001-03-05 Neil Jerram <neil@ossau.uklinux.net>
|
||||||
|
|
||||||
* optargs.scm (rest-arg->keyword-binding-list): Use "'()" instead
|
* optargs.scm (rest-arg->keyword-binding-list): Use "'()" instead
|
||||||
|
|
|
@ -79,7 +79,8 @@ first call to @var{reader}, and so @var{reader} will be called with
|
||||||
(else
|
(else
|
||||||
(let ((res (string-ref read-string string-index)))
|
(let ((res (string-ref read-string string-index)))
|
||||||
(set! string-index (+ 1 string-index))
|
(set! string-index (+ 1 string-index))
|
||||||
(set! (buffered-input-continuation? port) #t)
|
(if (not (char-whitespace? res))
|
||||||
|
(set! (buffered-input-continuation? port) #t))
|
||||||
res)))))
|
res)))))
|
||||||
(port #f))
|
(port #f))
|
||||||
(set! port (make-soft-port (vector #f #f #f get-character #f) "r"))
|
(set! port (make-soft-port (vector #f #f #f get-character #f) "r"))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue