summaryrefslogtreecommitdiff
path: root/libguile
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2012-01-12 00:10:44 +0100
committerAndy Wingo <wingo@pobox.com>2012-01-12 00:10:44 +0100
commitf43622a27b98ae2d44cd1a5d35c95309cc617c5c (patch)
tree3834e6a27c81a4bba72908e622297e3327985d89 /libguile
parent99db1bc2e2de7ee9a91eb07d7f9a7188626ac6bc (diff)
downloadguile-f43622a27b98ae2d44cd1a5d35c95309cc617c5c.tar.gz
fluids.c docstring
* libguile/fluids.c (scm_make_fluid_with_default): Update docstring.
Diffstat (limited to 'libguile')
-rw-r--r--libguile/fluids.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libguile/fluids.c b/libguile/fluids.c
index f92c5dddc..f1c09cb30 100644
--- a/libguile/fluids.c
+++ b/libguile/fluids.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1996,1997,2000,2001, 2004, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
+/* Copyright (C) 1996,1997,2000,2001, 2004, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
@@ -179,7 +179,8 @@ scm_make_fluid (void)
SCM_DEFINE (scm_make_fluid_with_default, "make-fluid", 0, 1, 0,
(SCM dflt),
- "Return a newly created fluid.\n"
+ "Return a newly created fluid, whose initial value is @var{dflt},\n"
+ "or @code{#f} if @var{dflt} is not given.\n"
"Fluids are objects that can hold one\n"
"value per dynamic state. That is, modifications to this value are\n"
"only visible to code that executes with the same dynamic state as\n"