1
Fork 0
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:
Marius Vollmer 2005-01-10 01:50:29 +00:00
parent 74c58fce0f
commit 3a0cf65611

View file

@ -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)))