From 58a4a3700db33a69a6a893b017033f000a1dfccc Mon Sep 17 00:00:00 2001 From: Tim Chevalier Date: Thu, 6 Dec 2012 22:36:02 -0800 Subject: [PATCH] Revert "Print copy patterns correctly" This reverts commit ea6819637382e7f8979766b954dd2a1922d0dee0. --- src/libsyntax/print/pprust.rs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/libsyntax/print/pprust.rs b/src/libsyntax/print/pprust.rs index 5b77628889e3..14ef7c56b76d 100644 --- a/src/libsyntax/print/pprust.rs +++ b/src/libsyntax/print/pprust.rs @@ -1554,10 +1554,8 @@ fn print_pat(s: ps, &&pat: @ast::pat) { ast::bind_by_move => { word_nbsp(s, ~"move"); } - ast::bind_by_implicit_ref => {} - ast::bind_by_value => { - word_nbsp(s, ~"copy"); - } + ast::bind_by_implicit_ref | + ast::bind_by_value => {} } print_path(s, path, true); match sub {