guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] branch master updated: Clarify open-input-pipe example i


From: Daniel Llorens
Subject: [Guile-commits] branch master updated: Clarify open-input-pipe example in doc
Date: Fri, 24 Jan 2020 06:29:11 -0500

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 <address@hidden>
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

[Prev in Thread] Current Thread [Next in Thread]