From f5c2b19712e4e0293ec7b297a8bdf7deed735cf7 Mon Sep 17 00:00:00 2001 From: Jeremy Wall Date: Mon, 11 Nov 2019 20:07:27 -0600 Subject: [PATCH] MAINT: remove errant space. --- src/build/opcode/runtime.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/build/opcode/runtime.rs b/src/build/opcode/runtime.rs index 61cad44..7fc1fbc 100644 --- a/src/build/opcode/runtime.rs +++ b/src/build/opcode/runtime.rs @@ -809,7 +809,7 @@ impl Builtins { stack.push((acc.clone(), acc_pos.clone())); stack.push((Rc::new(P(Str(c.to_string()))), list_pos.clone())); // call function and push it's result on the stack. - let (new_acc, new_acc_pos) = decorate_call!(pos => + let (new_acc, new_acc_pos) = decorate_call!(pos => VM::fcall_impl(f, self.strict, stack, env.clone(), import_stack))?; acc = new_acc; acc_pos = new_acc_pos;