From ca5506a5dee75eb3ee84eff1f0fa5f5e40f54544 Mon Sep 17 00:00:00 2001 From: Jyun-Yan You Date: Mon, 8 Oct 2012 16:36:09 +0800 Subject: [PATCH] fix the indentation of foreign constant --- src/libsyntax/print/pprust.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libsyntax/print/pprust.rs b/src/libsyntax/print/pprust.rs index 5e37f7e18ec..60b3e005f10 100644 --- a/src/libsyntax/print/pprust.rs +++ b/src/libsyntax/print/pprust.rs @@ -433,6 +433,7 @@ fn print_foreign_item(s: ps, item: @ast::foreign_item) { print_type(s, t); word(s.s, ~";"); end(s); // end the head-ibox + end(s); // end the outer cbox } } }