summaryrefslogtreecommitdiff
path: root/srfi/srfi-1.c
diff options
context:
space:
mode:
authorMarius Vollmer <mvo@zagadka.de>2005-01-10 01:50:29 +0000
committerMarius Vollmer <mvo@zagadka.de>2005-01-10 01:50:29 +0000
commit3a0cf656110bf02a345dfc4fea463549e11ae6e6 (patch)
tree3267cbe254adbd2f736a60ae1839f29b0bcf5611 /srfi/srfi-1.c
parent74c58fce0f8936a67001a89f22daf8c4bd094f31 (diff)
downloadguile-3a0cf656110bf02a345dfc4fea463549e11ae6e6.tar.gz
(check_args): Bugfix to change from 2005-01-02: ARGV is the vector to
check, not ARGS.
Diffstat (limited to 'srfi/srfi-1.c')
-rw-r--r--srfi/srfi-1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/srfi/srfi-1.c b/srfi/srfi-1.c
index 11a66f7c1..d6432bbd4 100644
--- a/srfi/srfi-1.c
+++ b/srfi/srfi-1.c
@@ -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)))