about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-02-28 12:55:30 -0800
committerAlex Crichton <alex@alexcrichton.com>2014-03-01 10:06:20 -0800
commit2cb83fdd7ea4e76d4b1c830a97480521cc405625 (patch)
treedc3f78a323c4d2c875fdb98f1b2b9d49b70759ef /src/libsyntax
parent1ee94a1336071fb0319b23a6c73b3d83ccd66bdf (diff)
downloadrust-2cb83fdd7ea4e76d4b1c830a97480521cc405625.tar.gz
rust-2cb83fdd7ea4e76d4b1c830a97480521cc405625.zip
std: Switch stdout/stderr to buffered by default
Similarly to #12422 which made stdin buffered by default, this commit makes the
output streams also buffered by default. Now that buffered writers will flush
their contents when they are dropped, I don't believe that there's no reason why
the output shouldn't be buffered by default, which is what you want in 90% of
cases.

As with stdin, there are new stdout_raw() and stderr_raw() functions to get
unbuffered streams to stdout/stderr.
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/diagnostic.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsyntax/diagnostic.rs b/src/libsyntax/diagnostic.rs
index affeb86f782..cb7034a375d 100644
--- a/src/libsyntax/diagnostic.rs
+++ b/src/libsyntax/diagnostic.rs
@@ -227,8 +227,8 @@ enum Destination {
 impl EmitterWriter {
     pub fn stderr() -> EmitterWriter {
         let stderr = io::stderr();
-        if stderr.isatty() {
-            let dst = match term::Terminal::new(stderr) {
+        if stderr.get_ref().isatty() {
+            let dst = match term::Terminal::new(stderr.unwrap()) {
                 Ok(t) => Terminal(t),
                 Err(..) => Raw(~io::stderr()),
             };