| Age | Commit message (Expand) | Author | Lines |
| 2013-09-14 | auto merge of #9165 : klutzy/rust/newrt-file-fix, r=sanxiyn | bors | -0/+9 |
| 2013-09-14 | auto merge of #9162 : alexcrichton/rust/issue-9123, r=catamorphism | bors | -0/+44 |
| 2013-09-14 | auto merge of #9160 : alexcrichton/rust/local-data-docs, r=huonw | bors | -7/+8 |
| 2013-09-14 | auto merge of #9156 : sfackler/rust/buffered-fix, r=huonw | bors | -13/+19 |
| 2013-09-14 | auto merge of #9115 : erickt/rust/master, r=erickt | bors | -225/+1096 |
| 2013-09-14 | Get rid of unused SimpleVisitor stuff. | Lindsey Kuper | -144/+3 |
| 2013-09-13 | auto merge of #9185 : alexcrichton/rust/less-changing-directories, r=huonw | bors | -178/+119 |
| 2013-09-13 | Remove all usage of change_dir_locked | Alex Crichton | -178/+119 |
| 2013-09-13 | auto merge of #9176 : brson/rust/issue-9129, r=catamorphism | bors | -2/+10 |
| 2013-09-13 | Pass a more proper span to the syntax expanders | Alex Crichton | -1/+32 |
| 2013-09-14 | Add Orderable bound to num::Primitive | Brendan Zabarauskas | -0/+1 |
| 2013-09-14 | extra::workcache: Remodel the (internal) struct Work | blake2-ppc | -16/+16 |
| 2013-09-14 | std::logging: Use a more specific enum than Either | blake2-ppc | -18/+18 |
| 2013-09-14 | extra::test: Use Result instead of Either. | blake2-ppc | -11/+9 |
| 2013-09-14 | syntax: Remove use of Either in parse.rs | blake2-ppc | -21/+15 |
| 2013-09-13 | auto merge of #9173 : thestinger/rust/offset, r=alexcrichton | bors | -5/+0 |
| 2013-09-13 | Refactor libsyntax Visitor impls to use default methods. | Lindsey Kuper | -275/+3 |
| 2013-09-13 | Minor cleanup and formatting tweaks to the rust-mode README | Lindsey Kuper | -25/+28 |
| 2013-09-13 | Work around a compiler crash folding labeled break. #9129 | Brian Anderson | -2/+10 |
| 2013-09-13 | make ! support the equality/ordering operators | Daniel Micay | -1/+14 |
| 2013-09-13 | ptr: fix offset intrinsic | Daniel Micay | -5/+0 |
| 2013-09-13 | auto merge of #9158 : thestinger/rust/extern, r=alexcrichton | bors | -10/+10 |
| 2013-09-13 | auto merge of #9151 : catamorphism/rust/rustpkg-target-specific-subdirectory,... | bors | -31/+94 |
| 2013-09-13 | auto merge of #9170 : alexcrichton/rust/flaky-fileinput, r=erickt | bors | -188/+203 |
| 2013-09-13 | Move glob tests to a run-pass test | Alex Crichton | -188/+203 |
| 2013-09-13 | rustc/rustpkg: Use a target-specific subdirectory in build/ and lib/ | Tim Chevalier | -31/+94 |
| 2013-09-13 | set sret attribute as needed on call instructions | Daniel Micay | -10/+10 |
| 2013-09-13 | std: Fix another windows problem with the unwrap_or_default rename | Erick Tryzelaar | -1/+1 |
| 2013-09-13 | std: rename Option.chain to Option.and_then on windows | Erick Tryzelaar | -1/+1 |
| 2013-09-13 | std::rt::io: Fix file I/O on Win32 | klutzy | -0/+9 |
| 2013-09-13 | auto merge of #9141 : alexcrichton/rust/ignore-fileinput, r=catamorphism | bors | -10/+23 |
| 2013-09-13 | Translate nested items in default methods | Alex Crichton | -0/+44 |
| 2013-09-13 | auto merge of #9148 : jakub-/rust/rustpkg-install-mkdir-p, r=catamorphism | bors | -5/+9 |
| 2013-09-12 | Improve the local_data docs slightly | Alex Crichton | -7/+8 |
| 2013-09-12 | auto merge of #9087 : fhahn/rust/rust_crate_map, r=brson | bors | -229/+224 |
| 2013-09-12 | Stop using newtypes in rt::io::buffered | Steven Fackler | -13/+19 |
| 2013-09-12 | auto merge of #8796 : brson/rust/cstack, r=pnkfelix | bors | -0/+63 |
| 2013-09-12 | rustpkg: Install to RUST_PATH | Tim Chevalier | -9/+52 |
| 2013-09-12 | std: Restore Option::chain{,_mut}_ref as and_then{,_mut}_ref | Erick Tryzelaar | -31/+31 |
| 2013-09-12 | std: Remove Zero impl for Option | Erick Tryzelaar | -6/+0 |
| 2013-09-12 | std: Remove Zero impl from vec | Erick Tryzelaar | -25/+7 |
| 2013-09-12 | syntax: add #[deriving(Default)] syntax extension | Erick Tryzelaar | -2/+123 |
| 2013-09-12 | std: Add a bunch of Default impls | Erick Tryzelaar | -5/+82 |
| 2013-09-12 | std: Rename {Option,Result}::chain{,_err}* to {and_then,or_else} | Erick Tryzelaar | -161/+202 |
| 2013-09-12 | std: Add ToEither/IntoEither/AsEither | Erick Tryzelaar | -21/+162 |
| 2013-09-12 | std: Add ToResult/IntoResult/AsResult | Erick Tryzelaar | -12/+171 |
| 2013-09-12 | std: Add ToOption/IntoOption/AsOption | Erick Tryzelaar | -0/+185 |
| 2013-09-12 | std: fix a warning | Erick Tryzelaar | -1/+1 |
| 2013-09-12 | std: Add Option.{and,and_then,or,or_else} | Erick Tryzelaar | -10/+83 |
| 2013-09-12 | std: Add Option.unwrap_or_else and a couple tests | Erick Tryzelaar | -0/+47 |