From f4df2e4974388d5104d3eb57487ffcd01cc974b2 Mon Sep 17 00:00:00 2001 From: Michael Sullivan Date: Tue, 31 May 2011 16:16:36 -0700 Subject: [PATCH] Fix pretty printer for move. --- src/comp/pretty/pprust.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/comp/pretty/pprust.rs b/src/comp/pretty/pprust.rs index 0888880ae785..ca6e83fc8487 100644 --- a/src/comp/pretty/pprust.rs +++ b/src/comp/pretty/pprust.rs @@ -693,7 +693,7 @@ fn print_expr(&ps s, &@ast::expr expr) { case (ast::expr_move(?lhs,?rhs,_)) { print_expr(s, lhs); space(s.s); - wrd1(s, "<-"); + word_space(s, "<-"); print_expr(s, rhs); } case (ast::expr_assign(?lhs,?rhs,_)) {