diff options
| author | bors <bors@rust-lang.org> | 2013-07-09 15:13:40 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-07-09 15:13:40 -0700 |
| commit | 137d1fb210a844a76f89d7355a1aaf9f7a88af33 (patch) | |
| tree | 79aa81625da93344be55a61eb80c8d215dd4a808 /src/libsyntax | |
| parent | e388a80c234d628c4d1fab77dc3e3f2c04cbefc5 (diff) | |
| parent | 31114acdd7da8f2826558b11adea96d1c561aabd (diff) | |
| download | rust-137d1fb210a844a76f89d7355a1aaf9f7a88af33.tar.gz rust-137d1fb210a844a76f89d7355a1aaf9f7a88af33.zip | |
auto merge of #7657 : thestinger/rust/rollup, r=thestinger
d3be8ab r=brson 05eb3cf r=thestinger c80f4e1 r=huonw 8c27af1 r=huonw 0eee0b6 r=cmr ea2756a r=thestinger
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/diagnostic.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/diagnostic.rs b/src/libsyntax/diagnostic.rs index 204028212d6..0180c2b31d7 100644 --- a/src/libsyntax/diagnostic.rs +++ b/src/libsyntax/diagnostic.rs @@ -213,7 +213,7 @@ fn print_diagnostic(topic: &str, lvl: level, msg: &str) { } print_maybe_colored(fmt!("%s: ", diagnosticstr(lvl)), diagnosticcolor(lvl)); - stderr.write_str(fmt!("%s\n", msg)); + print_maybe_colored(fmt!("%s\n", msg), term::color::BRIGHT_WHITE); } pub fn collect(messages: @mut ~[~str]) |
