1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

Fix typo in `scm_array_p_2 ()'.

* libguile/generalized-arrays.c (scm_array_p_2)[FUNC_NAME]: Fix.
This commit is contained in:
Ludovic Courtès 2009-10-06 23:40:30 +02:00
parent f67ddf9dbf
commit 61aab1c375

View file

@ -43,7 +43,7 @@ SCM_DEFINE (scm_array_p_2, "array?", 1, 0, 0,
(SCM obj),
"Return @code{#t} if the @var{obj} is an array, and @code{#f} if\n"
"not.")
#define FUNC_NAME s_scm_array_p
#define FUNC_NAME s_scm_array_p_2
{
return scm_from_bool (scm_is_array (obj));
}