diff options
author | Ted Yin <[email protected]> | 2013-08-06 18:05:38 -0700 |
---|---|---|
committer | Ted Yin <[email protected]> | 2013-08-06 18:05:38 -0700 |
commit | 3f91e63b523c024e049585580f3d68874e90caca (patch) | |
tree | 57e3bd7c6ba968b7a7f90b540f240c04e100c0dd | |
parent | cecd643ab2de3e4dbd69e76c58b928ab2aa2a80f (diff) | |
parent | 49dbc11f2a179e0086d894ec15ddb276e8aae99d (diff) |
Merge pull request #1 from sjtufs/patch-1
Update builtin.cpp
-rw-r--r-- | builtin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin.cpp b/builtin.cpp index 65c1109..b8e6148 100644 --- a/builtin.cpp +++ b/builtin.cpp @@ -471,7 +471,7 @@ void SpecialOptIf::pre_call(ArgList *args, Cons *pc, { pc->skip = true; pc = TO_CONS(pc->cdr); - TO_CONS(pc->cdr)->skip = true; + pc->skip = true; if (pc->cdr != empty_list) TO_CONS(pc->cdr)->skip = false; //Eval the latter } |