2000-11-07 Gary Houston <ghouston@arglist.com>
authorGary Houston <ghouston@arglist.com>
Thu, 9 Nov 2000 22:46:07 +0000 (22:46 +0000)
committerGary Houston <ghouston@arglist.com>
Thu, 9 Nov 2000 22:46:07 +0000 (22:46 +0000)
* popen.scm (open-output-pipe): added docstrings for open-input-pipe
and open-output-pipe.

ice-9/ChangeLog
ice-9/popen.scm

index bc2abc9..4661db3 100644 (file)
@@ -1,3 +1,8 @@
+2000-11-07  Gary Houston  <ghouston@arglist.com>
+
+       * popen.scm (open-output-pipe): added docstrings for open-input-pipe
+       and open-output-pipe.
+
 2000-11-06  Gary Houston  <ghouston@arglist.com>
 
        * popen.scm (open-process): bug fix: don't use
index 874477b..eca3dfe 100644 (file)
@@ -152,5 +152,10 @@ information on how to interpret this value."
 
 (add-hook! after-gc-hook reap-pipes)
 
-(define-public (open-input-pipe command) (open-pipe command OPEN_READ))
-(define-public (open-output-pipe command) (open-pipe command OPEN_WRITE))
+(define-public (open-input-pipe command)
+  "Equivalent to @code{open-pipe} with mode @code{OPEN_READ}"
+  (open-pipe command OPEN_READ))
+
+(define-public (open-output-pipe command)
+  "Equivalent to @code{open-pipe} with mode @code{OPEN_WRITE}"
+  (open-pipe command OPEN_WRITE))