summaryrefslogtreecommitdiff
path: root/libguile/dynl.c
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2010-08-06 13:41:58 +0200
committerAndy Wingo <wingo@pobox.com>2010-08-06 13:41:58 +0200
commitba270f8c267f8886636939078a4c6f6b1f8107cd (patch)
treea60257330e7145fd366ccc26d023512f193820e0 /libguile/dynl.c
parent869bfe86af41ad92261128a1784bfb6638f78484 (diff)
downloadguile-ba270f8c267f8886636939078a4c6f6b1f8107cd.tar.gz
remove type discusison from dynamic-pointer docstring
* doc/ref/api-foreign.texi: * libguile/dynl.c (scm_dynamic_pointer): Remove discussion of types from the docstring.
Diffstat (limited to 'libguile/dynl.c')
-rw-r--r--libguile/dynl.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/libguile/dynl.c b/libguile/dynl.c
index 2b1d656a6..dd1e0d3f8 100644
--- a/libguile/dynl.c
+++ b/libguile/dynl.c
@@ -240,11 +240,6 @@ SCM_DEFINE (scm_dynamic_pointer, "dynamic-pointer", 2, 0, 0,
"Return a ``wrapped pointer'' to the symbol @var{name}\n"
"in the shared object referred to by @var{dobj}. The returned\n"
"pointer points to a C object.\n\n"
- "This facility works by asking the dynamic linker for\n"
- "the address of a symbol, then assuming that it aliases a\n"
- "value of a given type. Obviously, the user must be very\n"
- "careful to ensure that the value actually is of the\n"
- "declared type, or bad things will happen.\n\n"
"Regardless whether your C compiler prepends an underscore\n"
"@samp{_} to the global names in a program, you should\n"
"@strong{not} include this underscore in @var{name}\n"