summaryrefslogtreecommitdiff
path: root/libguile/boolean.c
diff options
context:
space:
mode:
Diffstat (limited to 'libguile/boolean.c')
-rw-r--r--libguile/boolean.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libguile/boolean.c b/libguile/boolean.c
index 3a578bcd2..9859de9e7 100644
--- a/libguile/boolean.c
+++ b/libguile/boolean.c
@@ -53,8 +53,8 @@
SCM_DEFINE (scm_not, "not", 1, 0, 0,
- (SCM x),
-"")
+ (SCM x),
+ "Return #t iff X is #f, else return #f.\n")
#define FUNC_NAME s_scm_not
{
return SCM_BOOL(SCM_FALSEP(x));
@@ -64,7 +64,7 @@ SCM_DEFINE (scm_not, "not", 1, 0, 0,
SCM_DEFINE (scm_boolean_p, "boolean?", 1, 0, 0,
(SCM obj),
-"")
+ "Return #t iff OBJ is either #t or #f.\n")
#define FUNC_NAME s_scm_boolean_p
{
return SCM_BOOL(SCM_BOOL_F == obj || SCM_BOOL_T == obj);