summaryrefslogtreecommitdiff
path: root/libguile/dynl.c
diff options
context:
space:
mode:
authorNeil Jerram <neil@ossau.uklinux.net>2000-08-11 15:12:37 +0000
committerNeil Jerram <neil@ossau.uklinux.net>2000-08-11 15:12:37 +0000
commit872e0c7291add805ac889b31ae7e5cbf0122bbaa (patch)
treed718ce73df5b36e6190b3ce4784f1806051dbbf8 /libguile/dynl.c
parent41d7d2af429d0901f0aaff881ee432f5a241b3df (diff)
downloadguile-872e0c7291add805ac889b31ae7e5cbf0122bbaa.tar.gz
* macros.c: Remove surplus newlines from end of docstrings.
* list.c (scm_list_tail): Add @deffnx line to docstring for list-cdr-ref. * keywords.c: Docstring improvements in conjunction with new reference manual doc on keywords. * error.c (scm_error_scm): Fix texinfo syntax error in docstring. (@code(~S) should be @code{~S}.) * dynl.c: Remove surplus newlines from end of docstrings.
Diffstat (limited to 'libguile/dynl.c')
-rw-r--r--libguile/dynl.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/libguile/dynl.c b/libguile/dynl.c
index 5b7cfbf71..16c15f46d 100644
--- a/libguile/dynl.c
+++ b/libguile/dynl.c
@@ -380,7 +380,7 @@ SCM_DEFINE (scm_dynamic_unlink, "dynamic-unlink", 1, 0, 0,
"Unlink the indicated object file from the application. The\n"
"argument @var{dynobj} must have been obtained by a call to\n"
"@code{dynamic-link}. After @code{dynamic-unlink} has been\n"
- "called on @var{dynobj}, its content is no longer accessible.\n")
+ "called on @var{dynobj}, its content is no longer accessible.")
#define FUNC_NAME s_scm_dynamic_unlink
{
/*fixme* GC-problem */
@@ -411,8 +411,7 @@ SCM_DEFINE (scm_dynamic_func, "dynamic-func", 2, 0, 0,
"Regardless whether your C compiler prepends an underscore @samp{_} to\n"
"the global names in a program, you should @strong{not} include this\n"
"underscore in @var{function}. Guile knows whether the underscore is\n"
- "needed or not and will add it when necessary.\n\n"
- "")
+ "needed or not and will add it when necessary.")
#define FUNC_NAME s_scm_dynamic_func
{
void (*func) ();
@@ -451,8 +450,7 @@ SCM_DEFINE (scm_dynamic_call, "dynamic-call", 2, 0, 0,
"(dynamic-call (dynamic-func @var{function} @var{dynobj} #f))\n"
"@end smallexample\n\n"
"Interrupts are deferred while the C function is executing (with\n"
- "@code{SCM_DEFER_INTS}/@code{SCM_ALLOW_INTS}).\n"
- "")
+ "@code{SCM_DEFER_INTS}/@code{SCM_ALLOW_INTS}).")
#define FUNC_NAME s_scm_dynamic_call
{
void (*fptr) ();
@@ -486,8 +484,7 @@ SCM_DEFINE (scm_dynamic_args_call, "dynamic-args-call", 3, 0, 0,
"The parameter @var{args} must be a list of strings and is converted into\n"
"an array of @code{char *}. The array is passed in @var{argv} and its\n"
"size in @var{argc}. The return value is converted to a Scheme number\n"
- "and returned from the call to @code{dynamic-args-call}.\n\n\n"
- "")
+ "and returned from the call to @code{dynamic-args-call}.")
#define FUNC_NAME s_scm_dynamic_args_call
{
int (*fptr) (int argc, char **argv);