diff options
author | Andy Wingo <wingo@pobox.com> | 2016-04-02 11:50:46 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2016-04-04 16:30:56 +0200 |
commit | 59a18451b8bc70fe9cb9b9f41e61bbfa9e0e86be (patch) | |
tree | e4665183a3a144d60bb563e0f61260ff94393c1a /NEWS | |
parent | 0a0a8d819db685e240f0a27404ffd167654b7f85 (diff) |
Use symbols instead of _IONBF values as args to setvbuf
* libguile/ports.c (scm_setvbuf): Use the symbols `none', `line', and
`block' instead of the values `_IONBF', `_IOLBF', and `_IOFBF'.
* NEWS: Update.
* doc/ref/posix.texi (Ports and File Descriptors): Update setvbuf
documentation.
* module/ice-9/deprecated.scm (define-deprecated): New helper.
(_IONBF, _IOLBF, _IOFBF): Define deprecated values.
* benchmark-suite/benchmarks/read.bm ("read"):
* benchmark-suite/benchmarks/uniform-vector-read.bm
("uniform-vector-read!"):
* libguile/r6rs-ports.c (cbip_fill_input):
* module/system/base/types.scm (%ffi-memory-backend):
* module/web/client.scm (open-socket-for-uri):
* module/web/server/http.scm (http-read):
* test-suite/tests/ports.test ("pipe, fdopen, and line buffering"):
("setvbuf"):
* test-suite/tests/r6rs-ports.test ("7.2.7 Input Ports"): Update to use
non-deprecated interfaces.
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -5,6 +5,22 @@ See the end for copying conditions. Please send Guile bug reports to bug-guile@gnu.org. +FIXME: Incorporate 2.1.2 changes into cumulative 2.2 changes before +releasing 2.1.3. + + +Changes in 2.1.3 (changes since the 2.1.2 alpha release): + +* Notable changes +* New deprecations +** `_IONBF', `_IOLBF', and `_IOFBF' + +Instead, use the symbol values `none', `line', or `block', respectively, +as arguments to the `setvbuf' function. + +* Incompatible changes + + Changes in 2.1.2 (changes since the 2.1.1 alpha release): |