From bd3067230dcbd18fb1f0db7abb52c4ea1c2e227b Mon Sep 17 00:00:00 2001 From: Joel Martin Date: Mon, 27 Oct 2014 22:39:31 -0500 Subject: rust: add metadata support. --- rust/src/env.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'rust/src/env.rs') 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 { 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 { -- cgit v1.2.3