Merge pull request #397 from ebfe/fix-build-master

fmt: fix build with rust master
This commit is contained in:
Heather 2014-09-23 23:08:57 +04:00
commit 0ec8c82384

View file

@ -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)
}