Skip to content

Commit 0c0c492

Browse files
committed
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!
2 parents 0478142 + 5746e0c commit 0c0c492

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libextra/terminfo/parser/compiled.rs

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

0 commit comments

Comments
 (0)