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/fluids.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/fluids.c')
-rw-r--r-- | libguile/fluids.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/libguile/fluids.c b/libguile/fluids.c index a76b05c76..a24709828 100644 --- a/libguile/fluids.c +++ b/libguile/fluids.c @@ -138,7 +138,8 @@ SCM_DEFINE (scm_make_fluid, "make-fluid", 0, 0, 0, SCM_DEFINE (scm_fluid_p, "fluid?", 1, 0, 0, (SCM obj), - "Return #t iff @var{obj} is a fluid; otherwise, return #f.") + "Return @code{#t} iff @var{obj} is a fluid; otherwise, return\n" + "@code{#f}.") #define FUNC_NAME s_scm_fluid_p { return SCM_BOOL(SCM_FLUIDP (obj)); @@ -147,8 +148,9 @@ SCM_DEFINE (scm_fluid_p, "fluid?", 1, 0, 0, SCM_DEFINE (scm_fluid_ref, "fluid-ref", 1, 0, 0, (SCM fluid), - "Return the value associated with @var{fluid} in the current dynamic root.\n" - "If @var{fluid} has not been set, then this returns #f.") + "Return the value associated with @var{fluid} in the current\n" + "dynamic root. If @var{fluid} has not been set, then return\n" + "@code{#f}.") #define FUNC_NAME s_scm_fluid_ref { int n; |