diff options
author | Andy Wingo <wingo@pobox.com> | 2016-05-25 21:48:56 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2016-05-25 21:56:19 +0200 |
commit | 1123002a9e66f0fc9c329cc445fedfd077bfd770 (patch) | |
tree | 5d2ab4db26229b473e25d0d569593c8305a8165a /module | |
parent | 2f836e2384623dabcadd18799c13965ddf3b6004 (diff) | |
download | guile-1123002a9e66f0fc9c329cc445fedfd077bfd770.tar.gz |
Add port-line-buffered?
* libguile/ports.c (scm_port_line_buffered_p): New function.
* module/ice-9/ports.scm: Plump port-line-buffered? and
port-auxiliary-write-buffer through to the internals module
Diffstat (limited to 'module')
-rw-r--r-- | module/ice-9/ports.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/module/ice-9/ports.scm b/module/ice-9/ports.scm index 4b7462585..3fc2f6465 100644 --- a/module/ice-9/ports.scm +++ b/module/ice-9/ports.scm @@ -164,6 +164,8 @@ interpret its input and output." #:use-module (ice-9 ports) #:export (port-read-buffer port-write-buffer + port-auxiliary-write-buffer + port-line-buffered? expand-port-read-buffer! port-buffer-bytevector port-buffer-cur @@ -219,6 +221,8 @@ interpret its input and output." (private-port-bindings port-read-buffer port-write-buffer + port-auxiliary-write-buffer + port-line-buffered? expand-port-read-buffer! port-read port-write |