about summary refs log tree commit diff
path: root/src/libextra
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-12-22 13:51:35 -0800
committerbors <bors@rust-lang.org>2013-12-22 13:51:35 -0800
commit0c0c492101225b7e78800efc0f4bec6b43bb931f (patch)
tree3d7f4b2fedc1a080c3dd1d99c38865c6aea497c0 /src/libextra
parent0478142b5f3bad7ced378e616e907fb216856225 (diff)
parent5746e0cd2a07f656885667afc5825e91a966fe0c (diff)
downloadrust-0c0c492101225b7e78800efc0f4bec6b43bb931f.tar.gz
rust-0c0c492101225b7e78800efc0f4bec6b43bb931f.zip
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!
Diffstat (limited to 'src/libextra')
-rw-r--r--src/libextra/terminfo/parser/compiled.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libextra/terminfo/parser/compiled.rs b/src/libextra/terminfo/parser/compiled.rs
index d42340cb817..76bae402d72 100644
--- a/src/libextra/terminfo/parser/compiled.rs
+++ b/src/libextra/terminfo/parser/compiled.rs
@@ -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 {