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:
parent
4a0821a8d5
commit
06589f5c22
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue