about summary refs log tree commit diff
path: root/src/libnative/io/tty_windows.rs
AgeCommit message (Collapse)AuthorLines
2014-11-08Runtime removal: refactor ttyAaron Turon-160/+0
This patch continues runtime removal by moving the tty implementations into `sys`. Because this eliminates APIs in `libnative` and `librustrt`, it is a: [breaking-change] This functionality is likely to be available publicly, in some form, from `std` in the future.
2014-10-19Remove a large amount of deprecated functionalityAlex Crichton-3/+5
Spring cleaning is here! In the Fall! This commit removes quite a large amount of deprecated functionality from the standard libraries. I tried to ensure that only old deprecated functionality was removed. This is removing lots and lots of deprecated features, so this is a breaking change. Please consult the deprecation messages of the deleted code to see how to migrate code forward if it still needs migration. [breaking-change]
2014-09-30librustc: Forbid `..` in range patterns.Patrick Walton-1/+1
This breaks code that looks like: match foo { 1..3 => { ... } } Instead, write: match foo { 1...3 => { ... } } Closes #17295. [breaking-change]
2014-09-16Fallout from renamingAaron Turon-2/+2
2014-09-03Fix spelling errors and capitalization.Joseph Crail-1/+1
2014-08-23Complete renaming of win32 to windowsVadim Chugunov-0/+158