diff options
author | ihsgnef <[email protected]> | 2013-08-07 09:03:38 +0800 |
---|---|---|
committer | ihsgnef <[email protected]> | 2013-08-07 09:03:38 +0800 |
commit | 49dbc11f2a179e0086d894ec15ddb276e8aae99d (patch) | |
tree | 57e3bd7c6ba968b7a7f90b540f240c04e100c0dd | |
parent | cecd643ab2de3e4dbd69e76c58b928ab2aa2a80f (diff) |
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 } |