From 029293ad0e63f336e186ce97e0ce9287a706f2df Mon Sep 17 00:00:00 2001 From: Michael Gehring Date: Tue, 23 Sep 2014 19:56:06 +0200 Subject: [PATCH] fmt: fix build --- src/fmt/parasplit.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fmt/parasplit.rs b/src/fmt/parasplit.rs index a0a8e5b4f..7478615e0 100644 --- a/src/fmt/parasplit.rs +++ b/src/fmt/parasplit.rs @@ -31,7 +31,7 @@ fn char_width(c: char) -> uint { // lines with PSKIP, lacking PREFIX, or which are entirely blank are // NoFormatLines; otherwise, they are FormatLines #[deriving(Show)] -enum Line { +pub enum Line { FormatLine(FileLine), NoFormatLine(String, bool) }