1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-30 04:27:45 +00:00

fmt: fix build

This commit is contained in:
Michael Gehring 2014-09-23 19:56:06 +02:00
parent 23c8581d95
commit 029293ad0e

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