aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/expand.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/expand.cpp b/src/expand.cpp
index 68904a9..ec55e39 100644
--- a/src/expand.cpp
+++ b/src/expand.cpp
@@ -69,7 +69,7 @@ expand_def(PEnv& penv, const AST* exp, void* arg)
List fnExp;
fnExp.push_back(penv.sym("fn"));
fnExp.push_back(argsExp.head);
- for (; i != tup->end(); ++i)
+ for (++i; i != tup->end(); ++i)
fnExp.push_back(*i);
fnExp.head->loc = exp->loc;