summaryrefslogtreecommitdiff
path: root/doc/ref/scheme-data.texi
diff options
context:
space:
mode:
authorMarius Vollmer <mvo@zagadka.de>2004-07-06 14:21:46 +0000
committerMarius Vollmer <mvo@zagadka.de>2004-07-06 14:21:46 +0000
commitef53cad458f620ce76beb52246bab93fd9168da8 (patch)
tree28962989601273d0180fbbcafead13af2acbdf9d /doc/ref/scheme-data.texi
parent9b5eee309e0690563cffa4035392b1768daf47ad (diff)
downloadguile-ef53cad458f620ce76beb52246bab93fd9168da8.tar.gz
Remove non-R5RS stuff from the 'rn' index.
Diffstat (limited to 'doc/ref/scheme-data.texi')
-rwxr-xr-xdoc/ref/scheme-data.texi7
1 files changed, 0 insertions, 7 deletions
diff --git a/doc/ref/scheme-data.texi b/doc/ref/scheme-data.texi
index 3c87268c3..afcd092ba 100755
--- a/doc/ref/scheme-data.texi
+++ b/doc/ref/scheme-data.texi
@@ -123,38 +123,31 @@ Return @code{#t} if @var{obj} is either @code{#t} or @code{#f}, else
return @code{#f}.
@end deffn
-@rnindex SCM_BOOL_T
@deftypevr {C Macro} SCM SCM_BOOL_T
The @code{SCM} representation of the Scheme object @code{#t}.
@end deftypevr
-@rnindex SCM_BOOL_T
@deftypevr {C Macro} SCM SCM_BOOL_F
The @code{SCM} representation of the Scheme object @code{#f}.
@end deftypevr
-@rnindex scm_is_true
@deftypefn {C Macro} int scm_is_true (SCM obj)
Return @code{0} if @var{obj} is @code{#f}, else return @code{1}.
@end deftypefn
-@rnindex scm_is_false
@deftypefn {C Macro} int scm_is_false (SCM obj)
Return @code{1} if @var{obj} is @code{#f}, else return @code{0}.
@end deftypefn
-@rnindex scm_is_bool
@deftypefn {C Macro} scm_is_bool (SCM obj)
Return @code{1} if @var{obj} is either @code{#t} or @code{#f}, else
return @code{0}.
@end deftypefn
-@rnindex scm_from_bool
@deftypefn {C Macro} SCM scm_from_bool (int val)
Return @code{#f} if @var{val} is @code{0}, else return @code{#t}.
@end deftypefn
-@rnindex scm_to_bool
@deftypefn {C Macro} int scm_to_bool (SCM val)
Return @code{1} if @var{val} is @code{SCM_BOOL_T}, return @code{0}
when @var{val} is @code{SCM_BOOL_F}, else signal a `wrong type' error.