diff options
author | Gary Houston <ghouston@arglist.com> | 2000-11-07 22:42:35 +0000 |
---|---|---|
committer | Gary Houston <ghouston@arglist.com> | 2000-11-07 22:42:35 +0000 |
commit | 34526073e85b0b4ab89c95f45e55286960a1b11e (patch) | |
tree | 0cd3b6d52f33b869c7ba64e2d39572219c1108f7 /libguile/ioext.c | |
parent | 9f9919eb84ffc03c4c27f060476e94b263752dec (diff) | |
download | guile-34526073e85b0b4ab89c95f45e55286960a1b11e.tar.gz |
*** empty log message ***
Diffstat (limited to 'libguile/ioext.c')
-rw-r--r-- | libguile/ioext.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libguile/ioext.c b/libguile/ioext.c index 439a7d7a0..6193679c1 100644 --- a/libguile/ioext.c +++ b/libguile/ioext.c @@ -412,6 +412,7 @@ SCM_DEFINE (scm_dup_to_fdes, "dup->fdes", 1, 1, 0, } #undef FUNC_NAME + SCM_DEFINE (scm_dup2, "dup2", 2, 0, 0, (SCM oldfd, SCM newfd), "A simple wrapper for the @code{dup2} system call.\n" @@ -420,7 +421,7 @@ SCM_DEFINE (scm_dup2, "dup2", 2, 0, 0, "of @var{newfd}. Both @var{oldfd} and @var{newfd} must\n" "be integers.\n" "Unlike for dup->fdes or primitive-move->fdes, no attempt\n" - "is made to move away ports which are using @var{newfd}\n". + "is made to move away ports which are using @var{newfd}.\n" "The return value is unspecified.") #define FUNC_NAME s_scm_dup2 { |