diff options
Diffstat (limited to 'src/sexp/step.rs')
-rw-r--r-- | src/sexp/step.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/sexp/step.rs b/src/sexp/step.rs index bae47a5..d35c8af 100644 --- a/src/sexp/step.rs +++ b/src/sexp/step.rs @@ -368,7 +368,6 @@ impl SExp { let (scrutinee, patarms) = scons(op, l).check_case().unwrap(); if !scrutinee.is_value() { return Ok(SExp::back_to_case(scrutinee.step()?, patarms)); - // return scons(Case, scons(scrutinee.step()?)) } let scrutinee = match scrutinee { @@ -646,7 +645,7 @@ impl SExp { }, // Nil in list - SCons(op, l) if *op == Atom(Nil) => { + SCons(op, _) if *op == Atom(Nil) => { Ok(scons(Vector, Nil)) }, |