diff options
Diffstat (limited to 'src/expand.cpp')
-rw-r--r-- | src/expand.cpp | 2 |
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; |