auto merge of #11101 : jhasse/rust/patch-msys-quickfix, r=luqmana

I had this fixed but somehow forgot to commit it in my final patch. Sorry!
This commit is contained in:
bors 2013-12-22 13:51:35 -08:00
commit 0c0c492101

View File

@ -320,7 +320,7 @@ pub fn parse(file: &mut io::Reader,
pub fn msys_terminfo() -> ~TermInfo {
let mut strings = HashMap::new();
strings.insert(~"sgr0", bytes!("\x1b[0m").to_owned());
strings.insert(~"bold", bytes!("\x1b[1m;").to_owned());
strings.insert(~"bold", bytes!("\x1b[1m").to_owned());
strings.insert(~"setaf", bytes!("\x1b[3%p1%dm").to_owned());
strings.insert(~"setab", bytes!("\x1b[4%p1%dm").to_owned());
~TermInfo {