aboutsummaryrefslogtreecommitdiff
path: root/rust/src/env.rs
diff options
context:
space:
mode:
Diffstat (limited to 'rust/src/env.rs')
-rw-r--r--rust/src/env.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/rust/src/env.rs b/rust/src/env.rs
index 7ffc319..cf8aa0f 100644
--- a/rust/src/env.rs
+++ b/rust/src/env.rs
@@ -23,9 +23,9 @@ pub fn env_bind(env: &Env,
mexprs: MalVal) -> Result<Env,String> {
let mut variadic = false;
match *mbinds {
- List(ref binds) | Vector(ref binds) => {
+ List(ref binds,_) | Vector(ref binds,_) => {
match *mexprs {
- List(ref exprs) | Vector(ref exprs) => {
+ List(ref exprs,_) | Vector(ref exprs,_) => {
let mut it = binds.iter().enumerate();
for (i, b) in it {
match **b {