mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-09 21:40:33 +02:00
(check_args): Bugfix to change from 2005-01-02: ARGV is the vector to
check, not ARGS.
This commit is contained in:
parent
74c58fce0f
commit
3a0cf65611
1 changed files with 1 additions and 1 deletions
|
@ -535,7 +535,7 @@ check_map_args (SCM argv,
|
|||
|
||||
for (i = SCM_SIMPLE_VECTOR_LENGTH (argv) - 1; i >= 1; i--)
|
||||
{
|
||||
SCM elt = SCM_SIMPLE_VECTOR_REF (args, i);
|
||||
SCM elt = SCM_SIMPLE_VECTOR_REF (argv, i);
|
||||
long elt_len;
|
||||
|
||||
if (!(SCM_NULLP (elt) || SCM_CONSP (elt)))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue