1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

Fix erroneous FUNC_NAME' for scm_array_length'.

* libguile/generalized-arrays.c (scm_array_length): Fix `FUNC_NAME'.
This commit is contained in:
Ludovic Courtès 2013-03-28 21:01:51 +01:00
parent 4a0821a8d5
commit 06589f5c22

View file

@ -135,7 +135,7 @@ SCM_DEFINE (scm_array_length, "array-length", 1, 0, 0,
(SCM array), (SCM array),
"Return the length of an array: its first dimension.\n" "Return the length of an array: its first dimension.\n"
"It is an error to ask for the length of an array of rank 0.") "It is an error to ask for the length of an array of rank 0.")
#define FUNC_NAME s_scm_array_rank #define FUNC_NAME s_scm_array_length
{ {
return scm_from_size_t (scm_c_array_length (array)); return scm_from_size_t (scm_c_array_length (array));
} }