diff --git a/src/libterm/terminfo/mod.rs b/src/libterm/terminfo/mod.rs index 93a7657fae9e..0c07bbd1e6dd 100644 --- a/src/libterm/terminfo/mod.rs +++ b/src/libterm/terminfo/mod.rs @@ -23,6 +23,7 @@ /// A parsed terminfo database entry. +#[deriving(Show)] pub struct TermInfo { /// Names for the terminal pub names: Vec , @@ -86,7 +87,7 @@ fn new(out: T) -> Option> { // msys terminal return Some(TerminfoTerminal {out: out, ti: msys_terminfo(), num_colors: 8}); } - debug!("error finding terminfo entry: {}", entry.unwrap_err()); + debug!("error finding terminfo entry: {}", entry.err().unwrap()); return None; } @@ -183,7 +184,7 @@ fn reset(&mut self) -> IoResult<()> { cap = self.ti.strings.find_equiv(&("op")); } } - let s = cap.map_or(Err(~"can't find terminfo capability `sgr0`"), |op| { + let s = cap.map_or(Err("can't find terminfo capability `sgr0`".to_owned()), |op| { expand(op.as_slice(), [], &mut Variables::new()) }); if s.is_ok() {