diff options
author | Martin Grabmüller <mgrabmue@cs.tu-berlin.de> | 2001-04-03 13:19:05 +0000 |
---|---|---|
committer | Martin Grabmüller <mgrabmue@cs.tu-berlin.de> | 2001-04-03 13:19:05 +0000 |
commit | 1e6808ea204cef454e41af1e2f309100ab99e9e1 (patch) | |
tree | fb93c3098d7dd4e7af175dbde98b5dc41dcd7c0d /libguile/simpos.c | |
parent | ae9f3a15826847d280f69b179c2e09776892a9c6 (diff) | |
download | guile-1e6808ea204cef454e41af1e2f309100ab99e9e1.tar.gz |
Correct, update, improve and clean up a lot of docstrings in order to make
the documentation much more consistent.
Diffstat (limited to 'libguile/simpos.c')
-rw-r--r-- | libguile/simpos.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/libguile/simpos.c b/libguile/simpos.c index e847ce0d5..a03ec6c30 100644 --- a/libguile/simpos.c +++ b/libguile/simpos.c @@ -68,11 +68,13 @@ extern int system(); #ifdef HAVE_SYSTEM SCM_DEFINE (scm_system, "system", 0, 1, 0, (SCM cmd), - "Executes @var{cmd} using the operating system's \"command processor\".\n" - "Under Unix this is usually the default shell @code{sh}. The value\n" - "returned is @var{cmd}'s exit status as returned by @code{waitpid}, which\n" - "can be interpreted using the functions above.\n\n" - "If @code{system} is called without arguments, it returns a boolean\n" + "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" + "\n" + "If @code{system} is called without arguments, return a boolean\n" "indicating whether the command processor is available.") #define FUNC_NAME s_scm_system { |