This is an automated email from the git hooks/post-receive script.

lloda pushed a commit to branch master
in repository guile.

The following commit(s) were added to refs/heads/master by this push:
     new 0fee413  Clarify open-input-pipe example in doc
0fee413 is described below

commit 0fee413ff81d303a16b1f93851ad1c9e04d01590
Author: Daniel Llorens <ll...@sarc.name>
AuthorDate: Fri Jan 24 12:28:29 2020 +0100

    Clarify open-input-pipe example in doc
---
 doc/ref/posix.texi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/ref/posix.texi b/doc/ref/posix.texi
index b1b51d0..2c85f80 100644
--- a/doc/ref/posix.texi
+++ b/doc/ref/posix.texi
@@ -2322,7 +2322,7 @@ Equivalent to @code{open-pipe} with mode @code{OPEN_READ}.
 
 @lisp
 (let* ((port (open-input-pipe "date --utc"))
-       (str  (read-line port)))
+       (str  (read-line port))) ; from (ice-9 rdelim)
   (close-pipe port)
   str)
 @result{} "Mon Mar 11 20:10:44 UTC 2002"

Reply via email to