diff options
author | Kevin Ryde <user42@zip.com.au> | 2003-08-12 20:24:52 +0000 |
---|---|---|
committer | Kevin Ryde <user42@zip.com.au> | 2003-08-12 20:24:52 +0000 |
commit | 34b6177b15201248a63305f835275c672bcb0f25 (patch) | |
tree | ecb9a097ee8e239379990d5bde2da007375e0d46 | |
parent | 6a4d17af96ea0a73c4fd77405920d75a8cc4d629 (diff) | |
download | guile-34b6177b15201248a63305f835275c672bcb0f25.tar.gz |
(scm_system): In docstring, refer to status:exit-val rather than
"functions above".
-rw-r--r-- | libguile/simpos.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/simpos.c b/libguile/simpos.c index fb0a13271..8c4dda542 100644 --- a/libguile/simpos.c +++ b/libguile/simpos.c @@ -49,8 +49,8 @@ SCM_DEFINE (scm_system, "system", 0, 1, 0, "Execute @var{cmd} using the operating system's \"command\n" "processor\". Under Unix this is usually the default shell\n" "@code{sh}. The value returned is @var{cmd}'s exit status as\n" - "returned by @code{waitpid}, which can be interpreted using the\n" - "functions above.\n" + "returned by @code{waitpid}, which can be interpreted using\n" + "@code{status:exit-val} and friends.\n" "\n" "If @code{system} is called without arguments, return a boolean\n" "indicating whether the command processor is available.") |