summaryrefslogtreecommitdiff
path: root/libguile/unif.c
diff options
context:
space:
mode:
authorNeil Jerram <neil@ossau.uklinux.net>2000-09-02 23:15:04 +0000
committerNeil Jerram <neil@ossau.uklinux.net>2000-09-02 23:15:04 +0000
commitec57ce2ecadeff4a5d4b6b2afa0a70d31a00bae7 (patch)
tree0c3a775821c5a1f6d449ac70eaa5c15957ca00ad /libguile/unif.c
parent31daeb2db8ca58b14794e42e9ee7e11b5f481d5c (diff)
downloadguile-ec57ce2ecadeff4a5d4b6b2afa0a70d31a00bae7.tar.gz
* Docstring updates for scm_uniform_vector_ref and scm_array_set_x.
Diffstat (limited to 'libguile/unif.c')
-rw-r--r--libguile/unif.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libguile/unif.c b/libguile/unif.c
index cc029157d..44cb0c2c8 100644
--- a/libguile/unif.c
+++ b/libguile/unif.c
@@ -1072,6 +1072,7 @@ SCM_REGISTER_PROC(s_array_ref, "array-ref", 1, 0, 1, scm_uniform_vector_ref);
SCM_DEFINE (scm_uniform_vector_ref, "uniform-vector-ref", 2, 0, 0,
(SCM v, SCM args),
+ "@deffnx primitive array-ref v . args\n"
"Returns the element at the @code{(index1, index2)} element in @var{array}.")
#define FUNC_NAME s_scm_uniform_vector_ref
{
@@ -1245,6 +1246,7 @@ SCM_REGISTER_PROC(s_uniform_array_set1_x, "uniform-array-set1!", 3, 0, 0, scm_ar
PROC is used (and it's called from C too). */
SCM_DEFINE (scm_array_set_x, "array-set!", 2, 0, 1,
(SCM v, SCM obj, SCM args),
+ "@deffnx primitive uniform-array-set1! v obj args\n"
"Sets the element at the @code{(index1, index2)} element in @var{array} to\n"
"@var{new-value}. The value returned by array-set! is unspecified.")
#define FUNC_NAME s_scm_array_set_x