| Age | Commit message (Expand) | Author | Lines |
| 2014-10-02 | Remove the `_` suffix from slice methods. | Nick Cameron | -8/+8 |
| 2014-10-02 | Use slice syntax instead of slice_to, etc. | Nick Cameron | -22/+22 |
| 2014-10-01 | auto merge of #17678 : fhahn/rust/issue-17628-infinite-recursion, r=alexcrichton | bors | -0/+1 |
| 2014-10-01 | auto merge of #17654 : gereeter/rust/no-unnecessary-cell, r=alexcrichton | bors | -96/+70 |
| 2014-10-01 | auto merge of #17653 : kaini/rust/master, r=alexcrichton | bors | -26/+37 |
| 2014-10-01 | Limit recursion depth for macro expansions, closes #17628 | Florian Hahn | -0/+1 |
| 2014-10-01 | auto merge of #17630 : sfackler/rust/cfg-warnings, r=brson | bors | -5/+4 |
| 2014-10-01 | auto merge of #17501 : pcwalton/rust/improve-method-lookup-autoderef, r=nikom... | bors | -7/+95 |
| 2014-10-01 | auto merge of #17584 : pcwalton/rust/range-patterns-dotdotdot, r=nick29581 | bors | -3/+3 |
| 2014-09-30 | auto merge of #17634 : jakub-/rust/if_let, r=kballard | bors | -14/+71 |
| 2014-09-30 | librustc: Fix up mutability in method autoderefs if incorrect, and | Patrick Walton | -7/+95 |
| 2014-09-30 | Fix librustc | Steven Fackler | -5/+4 |
| 2014-09-30 | Temporarily remove the description for the diagnostic E0162 | Jakub Wieczorek | -6/+2 |
| 2014-09-30 | Update after the fall out from the syntax::ptr changes | Jakub Wieczorek | -2/+2 |
| 2014-09-30 | Update based on PR feedback | Kevin Ballard | -8/+25 |
| 2014-09-30 | Produce a better error for irrefutable `if let` patterns | Kevin Ballard | -13/+40 |
| 2014-09-30 | Desugar 'if let' into the appropriate 'match' | Kevin Ballard | -0/+17 |
| 2014-09-30 | librustc: Forbid `..` in range patterns. | Patrick Walton | -3/+3 |
| 2014-09-30 | Fixes ICE when using reexported unit-like structs | Michael Kainer | -26/+37 |
| 2014-09-30 | librustc: Stop looking in metadata in type contents. | Patrick Walton | -7/+59 |
| 2014-09-30 | Removed some unnecessary RefCells from resolve | Jonathan S | -96/+70 |
| 2014-09-30 | auto merge of #17563 : brson/rust/wintcbfix, r=thestinger | bors | -1/+1 |
| 2014-09-30 | Emit an error rather than ICEing for a missing built-in bound lang item. | Nick Cameron | -45/+81 |
| 2014-09-29 | rollup merge of #17621 : sfackler/new-snap | Alex Crichton | -1/+0 |
| 2014-09-29 | rollup merge of #17619 : wizeman/fix-perm | Alex Crichton | -0/+12 |
| 2014-09-29 | rollup merge of #17613 : bkoropoff/issue-17593 | Alex Crichton | -2/+2 |
| 2014-09-29 | rollup merge of #17598 : bkoropoff/issue-17441 | Alex Crichton | -0/+31 |
| 2014-09-29 | rollup merge of #17592 : kmcallister/inline-asm-loc | Alex Crichton | -7/+52 |
| 2014-09-29 | rollup merge of #17576 : kmcallister/hide-quotes | Alex Crichton | -1/+2 |
| 2014-09-29 | rollup merge of #17519 : pcwalton/unboxed-closure-move-syntax | Alex Crichton | -24/+29 |
| 2014-09-29 | rustc: Fix permission denied error in 'ar' when lto is enabled | Ricardo M. Correia | -0/+12 |
| 2014-09-29 | auto merge of #17321 : apoelstra/rust/error-on-unknown-impl, r=alexcrichton | bors | -10/+71 |
| 2014-09-28 | Register new snapshots | Steven Fackler | -1/+0 |
| 2014-09-29 | auto merge of #17533 : michaelwoerister/rust/function-call-locs, r=luqmana | bors | -71/+282 |
| 2014-09-28 | Reject casts to unsized types and suggest use of reference or box | Brian Koropoff | -0/+31 |
| 2014-09-28 | Correctly populate trait impl map when checking for impl overlaps | Brian Koropoff | -2/+2 |
| 2014-09-28 | Cleanup error messages for anonymous impl for types not declared in the curre... | Andrew Poelstra | -10/+71 |
| 2014-09-28 | Keep ExpnId abstract by providing conversions | Keegan McAllister | -2/+2 |
| 2014-09-28 | auto merge of #17532 : ahmedcharles/rust/typo, r=alexcrichton | bors | -1/+1 |
| 2014-09-28 | auto merge of #17527 : sfackler/rust/cfg-syntax, r=alexcrichton | bors | -2/+2 |
| 2014-09-27 | Convert cfg syntax to new system | Steven Fackler | -2/+2 |
| 2014-09-27 | Translate inline assembly errors back to source locations | Keegan McAllister | -7/+52 |
| 2014-09-26 | Hide the quote_*! macros when the feature gate is off | Keegan McAllister | -1/+2 |
| 2014-09-26 | librustc: Give trait methods accessible via fewer autoderefs priority | Patrick Walton | -12/+2 |
| 2014-09-26 | rustc: Turn off split stacks on Windows | Brian Anderson | -1/+1 |
| 2014-09-26 | librustc: Eliminate the `ref` syntax for unboxed closure capture clauses | Patrick Walton | -24/+29 |
| 2014-09-25 | debuginfo: Make sure that all calls to drop glue are associated with debug lo... | Michael Woerister | -71/+282 |
| 2014-09-25 | Fix typo, structs => fields. | Ahmed Charles | -1/+1 |
| 2014-09-25 | Remove as much of TypeContents as I can -- unfortunately, it is still | Niko Matsakis | -51/+10 |
| 2014-09-25 | Move checking of whether fields are Sized or not into wf / trait code. | Niko Matsakis | -118/+91 |