From fc9c5d0684420f55858ce28e54d85e1eb4fdbde0 Mon Sep 17 00:00:00 2001 From: Han-Wen Nienhuys Date: Sun, 26 Jun 2005 23:25:18 +0000 Subject: [PATCH] *** empty log message *** --- libguile/ChangeLog | 4 ++++ libguile/fports.c | 2 ++ 2 files changed, 6 insertions(+) diff --git a/libguile/ChangeLog b/libguile/ChangeLog index 7f1a564a3..24bc5ca8c 100644 --- a/libguile/ChangeLog +++ b/libguile/ChangeLog @@ -1,3 +1,7 @@ +2005-06-18 Han-Wen Nienhuys + + * fports.c (s_scm_open_file): add the b flag for binary to the doc string. + 2005-06-25 Kevin Ryde * srfi-13.c (scm_string_filter, scm_string_delete): Partial revert diff --git a/libguile/fports.c b/libguile/fports.c index dc8ac13f9..8baeb6826 100644 --- a/libguile/fports.c +++ b/libguile/fports.c @@ -264,6 +264,8 @@ SCM_DEFINE (scm_open_file, "open-file", 2, 0, 0, "@end table\n" "The following additional characters can be appended:\n" "@table @samp\n" + "@item b\n" + "Open the underlying file in binary mode, if supported by the operating system. " "@item +\n" "Open the port for both input and output. E.g., @code{r+}: open\n" "an existing file for both input and output.\n"