os-rust/src/libterm
Patrick Walton 416144b827 librustc: Forbid .. in range patterns.
This breaks code that looks like:

    match foo {
        1..3 => { ... }
    }

Instead, write:

    match foo {
        1...3 => { ... }
    }

Closes #17295.

[breaking-change]
2014-09-30 09:11:26 -07:00
..
terminfo librustc: Forbid .. in range patterns. 2014-09-30 09:11:26 -07:00
lib.rs Update doc URLs for version bump 2014-07-11 11:21:57 -07:00
win.rs Restore original terminal colors after error messages on Windows. 2014-09-20 15:23:23 -07:00