1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-16 00:30:21 +02:00

* Docstring fixes - adding texinfo markup and removing extraneous trailing newlines.

This commit is contained in:
Neil Jerram 2000-08-18 09:30:54 +00:00
parent 7e6b52f867
commit cdbc74184f
4 changed files with 60 additions and 38 deletions

View file

@ -54,7 +54,7 @@
SCM_DEFINE (scm_not, "not", 1, 0, 0,
(SCM x),
"Return #t iff X is #f, else return #f.\n")
"Return @code{#t} iff @var{x} is @code{#f}, else return @code{#f}.")
#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")
"Return @code{#t} iff @var{obj} is either @code{#t} or @code{#f}.")
#define FUNC_NAME s_scm_boolean_p
{
return SCM_BOOL (SCM_BOOLP (obj));