aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Yin <ted.sybil@gmail.com>2013-08-06 18:05:38 -0700
committerTed Yin <ted.sybil@gmail.com>2013-08-06 18:05:38 -0700
commit3f91e63b523c024e049585580f3d68874e90caca (patch)
tree57e3bd7c6ba968b7a7f90b540f240c04e100c0dd
parentcecd643ab2de3e4dbd69e76c58b928ab2aa2a80f (diff)
parent49dbc11f2a179e0086d894ec15ddb276e8aae99d (diff)
Merge pull request #1 from sjtufs/patch-1
Update builtin.cpp
-rw-r--r--builtin.cpp2
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
}