guile-cvs
[Top][All Lists]
Advanced

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

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


From: Gary Houston
Subject: guile/guile-core/ice-9 ChangeLog popen.scm
Date: Thu, 09 Nov 2000 14:46:07 -0800

CVSROOT:        /cvs
Module name:    guile
Changes by:     Gary Houston <address@hidden>   00/11/09 14:46:07

Modified files:
        guile-core/ice-9: ChangeLog popen.scm 

Log message:
        2000-11-07  Gary Houston  <address@hidden>
        
        * popen.scm (open-output-pipe): added docstrings for open-input-pipe
        and open-output-pipe.

CVSWeb URLs:
http://subversions.gnu.org/cgi-bin/cvsweb/guile/guile-core/ice-9/ChangeLog.diff?r1=1.356&r2=1.357
http://subversions.gnu.org/cgi-bin/cvsweb/guile/guile-core/ice-9/popen.scm.diff?r1=1.6&r2=1.7

Patches:
Index: guile/guile-core/ice-9/ChangeLog
diff -u guile/guile-core/ice-9/ChangeLog:1.356 
guile/guile-core/ice-9/ChangeLog:1.357
--- guile/guile-core/ice-9/ChangeLog:1.356      Tue Nov  7 13:36:42 2000
+++ guile/guile-core/ice-9/ChangeLog    Thu Nov  9 14:46:06 2000
@@ -1,3 +1,8 @@
+2000-11-07  Gary Houston  <address@hidden>
+
+       * popen.scm (open-output-pipe): added docstrings for open-input-pipe
+       and open-output-pipe.
+
 2000-11-06  Gary Houston  <address@hidden>
 
        * popen.scm (open-process): bug fix: don't use
Index: guile/guile-core/ice-9/popen.scm
diff -u guile/guile-core/ice-9/popen.scm:1.6 
guile/guile-core/ice-9/popen.scm:1.7
--- guile/guile-core/ice-9/popen.scm:1.6        Tue Nov  7 13:36:42 2000
+++ guile/guile-core/ice-9/popen.scm    Thu Nov  9 14:46:07 2000
@@ -152,5 +152,10 @@
 
 (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))



reply via email to

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