| Age | Commit message (Expand) | Author | Lines |
| 2016-04-14 | Improve message for raw pointer missing mut and const | David Tolnay | -2/+2 |
| 2016-04-14 | Feature gate `pub(restricted)` | Jeffrey Seyfried | -0/+15 |
| 2016-04-14 | Parse `pub(restricted)` | Jeffrey Seyfried | -16/+25 |
| 2016-04-14 | Visit visibilities in the ast visitor's `walk_*` functions | Jeffrey Seyfried | -4/+7 |
| 2016-04-14 | Add a span to the `Crate` variant of `ast::Visibility` | Jeffrey Seyfried | -3/+3 |
| 2016-04-13 | implement RFC amendment 1494 | Alex Burka | -0/+1 |
| 2016-04-13 | Update a comment to reflect changes in tidy checks. | Leo Testard | -2/+2 |
| 2016-04-13 | Fixes #32922, a macro hygiene bug | Jeffrey Seyfried | -8/+9 |
| 2016-04-12 | Bare raw pointers have been disallowed forever | David Tolnay | -3/+2 |
| 2016-04-12 | Remove unused trait imports | Seo Sanghyeon | -7/+0 |
| 2016-04-12 | Auto merge of #32804 - alexcrichton:stabilize-1.9, r=brson | bors | -7/+8 |
| 2016-04-11 | Auto merge of #32711 - marcusklaas:try-shorthand-span-fix, r=nagisa | bors | -1/+1 |
| 2016-04-11 | Fix the span for try shorthand expressions | Marcus Klaas | -1/+1 |
| 2016-04-11 | std: Stabilize APIs for the 1.9 release | Alex Crichton | -7/+8 |
| 2016-04-10 | Auto merge of #32806 - brson:fix-features, r=alexcrichton | bors | -2/+2 |
| 2016-04-09 | Remove redundant call to `expand_item_multi_modifier` | Jeffrey Seyfried | -3/+1 |
| 2016-04-07 | Set the version number for stabilization of braced_empty_structs | Brian Anderson | -2/+2 |
| 2016-04-07 | Auto merge of #32016 - nikomatsakis:incr-comp-save, r=mw | bors | -0/+8 |
| 2016-04-06 | Rollup merge of #32727 - matklad:fix-comment, r=alexcrichton | Steve Klabnik | -6/+6 |
| 2016-04-06 | add code to persist graph and for unit-testing | Niko Matsakis | -0/+8 |
| 2016-04-06 | Rollup merge of #32570 - eddyb:tis-but-a-front, r=nikomatsakis | Manish Goregaokar | -416/+38 |
| 2016-04-06 | Move span into `StructField` | Vadim Petrochenkov | -34/+35 |
| 2016-04-06 | Get rid of ast::StructFieldKind | Vadim Petrochenkov | -72/+26 |
| 2016-04-06 | syntax: dismantle ast_util. | Eduard Burtescu | -422/+38 |
| 2016-04-05 | Auto merge of #32688 - jseyfried:ast_groundwork_for_1422, r=pnkfelix | bors | -64/+86 |
| 2016-04-05 | Rollup merge of #32714 - nrc:json-err-end-span, r=sfackler | Manish Goregaokar | -15/+60 |
| 2016-04-05 | Fixes bug which accepting using `super` in use statemet. | vlastachu | -6/+6 |
| 2016-04-04 | minor: update old comments | Aleksey Kladov | -6/+6 |
| 2016-04-04 | Give better spans for SpanEnd errors | Nick Cameron | -15/+60 |
| 2016-04-02 | Add `Crate` and `Restricted` variants to `ast::Visibility` | Jeffrey Seyfried | -7/+38 |
| 2016-04-02 | Make `ast::Visibility` non-copyable | Jeffrey Seyfried | -48/+48 |
| 2016-04-02 | Remove `ast::Visibility::inherit_from` (it is unused and has obsolete semantics) | Jeffrey Seyfried | -9/+0 |
| 2016-04-01 | Auto merge of #32544 - alexcrichton:rustbuild-dist-libtest, r=brson | bors | -1/+0 |
| 2016-04-01 | rustbuild: Fix dist for non-host targets | Alex Crichton | -1/+0 |
| 2016-03-31 | Auto merge of #32506 - petrochenkov:use, r=Manishearth | bors | -12/+6 |
| 2016-03-31 | syntax: Extra diagnostics for `_` used in an identifier position | Vadim Petrochenkov | -12/+6 |
| 2016-03-31 | Rollup merge of #32494 - pnkfelix:gate-parser-recovery-via-debugflag, r=nrc | Manish Goregaokar | -0/+9 |
| 2016-03-30 | Put in `-Z continue-parse-after-error` | Felix S. Klock II | -0/+9 |
| 2016-03-28 | Auto merge of #32479 - eddyb:eof-not-even-twice, r=nikomatsakis | bors | -9/+28 |
| 2016-03-28 | Auto merge of #32267 - durka:inclusive-range-error, r=nrc | bors | -29/+44 |
| 2016-03-27 | Type macro is tracked at rust-lang/rust#27245, not 27336 | NODA, Kai | -1/+1 |
| 2016-03-26 | syntax: Stop the bump loop for trait items at } and EOF. | Eduard Burtescu | -9/+17 |
| 2016-03-26 | syntax: Prevent bumping the parser EOF to stop infinite loops. | Eduard Burtescu | -0/+11 |
| 2016-03-26 | Rollup merge of #32435 - nrc:fix-err-recover, r=nikomatsakis | Manish Goregaokar | -24/+71 |
| 2016-03-26 | Rollup merge of #32199 - nikomatsakis:limiting-constants-in-patterns-2, r=pnk... | Manish Goregaokar | -7/+69 |
| 2016-03-25 | unit-test symbol-names and item-paths | Niko Matsakis | -0/+7 |
| 2016-03-25 | do not overwrite spans as eagerly | Niko Matsakis | -6/+61 |
| 2016-03-25 | modify #[deriving(Eq)] to emit #[structural_match] | Niko Matsakis | -1/+8 |
| 2016-03-24 | Rollup merge of #32459 - nrc:json-err-text, r=nikomatsakis | Steve Klabnik | -1/+39 |
| 2016-03-24 | address nits | Alex Burka | -3/+4 |