| Age | Commit message (Expand) | Author | Lines |
| 2013-10-07 | syntax: Display spans for open delimiters when a file ends prematurely | Tim Chevalier | -1/+11 |
| 2013-10-08 | add token::LIT_STR_RAW(ident, num of # symbols) | Benjamin Herr | -4/+14 |
| 2013-10-08 | lex raw string literals, like r#"blah"# | Benjamin Herr | -2/+66 |
| 2013-10-04 | Remove specific errors for very old obsolete syntax | Benjamin Herr | -449/+58 |
| 2013-10-02 | auto merge of #9665 : alexcrichton/rust/snapshot, r=brson | bors | -2/+9 |
| 2013-10-01 | Migrate users of 'loop' to 'continue' | Alex Crichton | -2/+2 |
| 2013-10-01 | Obsolete parsing 'loop' as 'continue' | Alex Crichton | -0/+7 |
| 2013-10-01 | remove the `float` type | Daniel Micay | -6/+1 |
| 2013-09-30 | syntax: Remove usage of fmt! | Alex Crichton | -94/+92 |
| 2013-09-29 | Remove all usage of @ast::Crate | Alex Crichton | -4/+4 |
| 2013-09-27 | auto merge of #9540 : alexcrichton/rust/more-rustdoc-improvements, r=brson | bors | -3/+3 |
| 2013-09-26 | auto merge of #9525 : klutzy/rust/obsolete-span-fix, r=alexcrichton | bors | -6/+9 |
| 2013-09-26 | Add 'continue' as a synonym for 'loop' | Brian Anderson | -18/+33 |
| 2013-09-26 | rustdoc: Generate documentation for foreign items | Alex Crichton | -3/+3 |
| 2013-09-26 | syntax: Fix wrong span on trait fn visibility | klutzy | -1/+2 |
| 2013-09-26 | syntax: Fix wrong span on ObsoleteMode | klutzy | -4/+6 |
| 2013-09-26 | syntax: Fix wrong span on ObsoleteEmptyImpl | klutzy | -1/+1 |
| 2013-09-25 | rustdoc: Improve comment stripping | Alex Crichton | -15/+40 |
| 2013-09-25 | auto merge of #9481 : jbclements/rust/minor-cleanup, r=cmr | bors | -10/+52 |
| 2013-09-25 | auto merge of #9432 : alexcrichton/rust/correct-item-visibility, r=pcwalton | bors | -48/+8 |
| 2013-09-24 | auto merge of #9335 : alexcrichton/rust/issue-7945, r=thestinger | bors | -21/+28 |
| 2013-09-24 | Disallow char literals which should be escaped | Alex Crichton | -21/+28 |
| 2013-09-24 | added test case for tokenization of macro_rules | John Clements | -0/+45 |
| 2013-09-24 | auto merge of #9336 : alexcrichton/rust/issue-7981, r=catamorphism | bors | -1/+8 |
| 2013-09-24 | Stop accepting 'impl ...;', require {} instead | Alex Crichton | -1/+8 |
| 2013-09-24 | cleanup | John Clements | -10/+7 |
| 2013-09-24 | Correctly encode item visibility in metadata | Alex Crichton | -48/+8 |
| 2013-09-23 | librustc: Remove the remaining direct uses of `@fn` from librustc. | Patrick Walton | -1/+1 |
| 2013-09-22 | Reserve the `alignof`, `offsetof`, and `sizeof` keywords | Birunthan Mohanathas | -4/+14 |
| 2013-09-20 | Implement a web backend for rustdoc_ng | Alex Crichton | -3/+1 |
| 2013-09-19 | lexer: further slight improvements to lexer errors | Benjamin Herr | -16/+30 |
| 2013-09-19 | lexer: report problematic chars verbatim or as escape sequence | Benjamin Herr | -12/+23 |
| 2013-09-19 | lexer: show correct span on lexical errors | Benjamin Herr | -19/+59 |
| 2013-09-18 | Register new snapshots | Alex Crichton | -2/+1 |
| 2013-09-17 | Added support for a `\0` escape sequence. | Daniel Rosenwasser | -0/+2 |
| 2013-09-17 | auto merge of #9244 : thestinger/rust/drop, r=catamorphism | bors | -1/+1 |
| 2013-09-16 | switch Drop to `&mut self` | Daniel Micay | -1/+1 |
| 2013-09-16 | Update syntax test | Corey Richardson | -1/+123 |
| 2013-09-16 | Fix hardcoded string in libsyntax | Corey Richardson | -24/+2 |
| 2013-09-15 | Remove {uint,int,u64,i64,...}::from_str,from_str_radix | blake2-ppc | -3/+3 |
| 2013-09-14 | auto merge of #9180 : blake2-ppc/rust/reduce-either, r=catamorphism | bors | -21/+15 |
| 2013-09-14 | syntax: Remove use of Either in parse.rs | blake2-ppc | -21/+15 |
| 2013-09-12 | std: Add Option.{result_or_default,or_default} that uses Default | Erick Tryzelaar | -1/+1 |
| 2013-09-12 | std: rename Option::unwrap_or_default() to unwrap_or() | Erick Tryzelaar | -4/+4 |
| 2013-09-11 | Flag unsafe blocks from format! as compiler-generated | Alex Crichton | -1/+1 |
| 2013-09-11 | Implement the notion of a "generated unsafe block" | Alex Crichton | -1/+1 |
| 2013-09-10 | change type of ExprLoop and ExprBreak elts from ident->name. | John Clements | -2/+2 |
| 2013-09-10 | Delay assignment of node ids until after expansion. Ensures that each AST node | Niko Matsakis | -102/+86 |
| 2013-09-09 | auto merge of #9005 : alexcrichton/rust/rusty-log, r=brson | bors | -10/+7 |
| 2013-09-08 | syntax: implement labelled breaks for `for`. | Huon Wilson | -5/+10 |