mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-16 16:50:21 +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:
parent
f67ddf9dbf
commit
61aab1c375
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ SCM_DEFINE (scm_array_p_2, "array?", 1, 0, 0,
|
||||||
(SCM obj),
|
(SCM obj),
|
||||||
"Return @code{#t} if the @var{obj} is an array, and @code{#f} if\n"
|
"Return @code{#t} if the @var{obj} is an array, and @code{#f} if\n"
|
||||||
"not.")
|
"not.")
|
||||||
#define FUNC_NAME s_scm_array_p
|
#define FUNC_NAME s_scm_array_p_2
|
||||||
{
|
{
|
||||||
return scm_from_bool (scm_is_array (obj));
|
return scm_from_bool (scm_is_array (obj));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue