| Age | Commit message (Expand) | Author | Lines |
| 2023-10-05 | Factor out some repeated feature-getting code. | Nicholas Nethercote | -18/+11 |
| 2023-10-05 | Add comments to `config::features`. | Nicholas Nethercote | -5/+30 |
| 2023-10-05 | Remove unused `Span` from the `set` function in `State::Active`. | Nicholas Nethercote | -4/+4 |
| 2023-09-07 | Enable incremental-relative-spans by default. | Camille GILLOT | -1/+1 |
| 2023-08-23 | Bump cfg(bootstrap) | Mark Rousskov | -1/+1 |
| 2023-08-18 | Auto merge of #114915 - nnethercote:Nonterminal-cleanups, r=petrochenkov | bors | -8/+7 |
| 2023-08-18 | Rename `NtOrTt` as `ParseNtResult`. | Nicholas Nethercote | -3/+3 |
| 2023-08-17 | [RFC-3086] Restrict the parsing of `count` | Caio | -1/+11 |
| 2023-08-17 | Remove unnecessary braces on `PatWithOr` patterns. | Nicholas Nethercote | -1/+1 |
| 2023-08-17 | Remove some unnecessary (and badly named) local variables. | Nicholas Nethercote | -4/+3 |
| 2023-08-11 | rustc: Move `features` from `Session` to `GlobalCtxt` | Vadim Petrochenkov | -15/+18 |
| 2023-08-04 | Auto merge of #114104 - oli-obk:syn2, r=compiler-errors | bors | -14/+20 |
| 2023-08-03 | Add `internal_features` lint | Nilstrieb | -0/+1 |
| 2023-08-03 | Remove `MacDelimiter`. | Nicholas Nethercote | -1/+2 |
| 2023-08-01 | Auto merge of #114273 - nnethercote:move-doc-comment-desugaring, r=petrochenkov | bors | -12/+16 |
| 2023-07-31 | Remove a `bool` for color in favor of the `WriteColor` trait wrapping colored... | Oli Scherer | -4/+19 |
| 2023-07-31 | Use builder pattern instead of lots of arguments for `EmitterWriter::new` | Oli Scherer | -14/+5 |
| 2023-07-31 | Remove `desugar_doc_comments` arg from `Parser::new()`. | Nicholas Nethercote | -4/+9 |
| 2023-07-31 | No need to desugar doc comments when parsing decl macro definitions. | Nicholas Nethercote | -1/+1 |
| 2023-07-31 | Reflow an overlong comment. | Nicholas Nethercote | -2/+2 |
| 2023-07-31 | Remove more unnecessary `return` keywords. | Nicholas Nethercote | -6/+5 |
| 2023-07-30 | inline format!() args up to and including rustc_middle | Matthias Krüger | -24/+23 |
| 2023-07-28 | Parse generic const items | León Orell Valerian Liehr | -1/+10 |
| 2023-07-28 | Auto merge of #114115 - nnethercote:less-token-tree-cloning, r=petrochenkov | bors | -34/+31 |
| 2023-07-27 | Remove `Iterator` impl for `TokenTreeCursor`. | Nicholas Nethercote | -5/+5 |
| 2023-07-27 | Avoid some token tree cloning in decl macro parsing. | Nicholas Nethercote | -23/+23 |
| 2023-07-27 | Replace `into_trees` with `trees` in a test. | Nicholas Nethercote | -3/+2 |
| 2023-07-27 | Simplify the `ttdelim_span` test. | Nicholas Nethercote | -3/+1 |
| 2023-07-26 | Squelch a noisy rustc_expand unittest | Eric Huss | -24/+57 |
| 2023-07-25 | Use a builder instead of boolean/option arguments | Oli Scherer | -1/+1 |
| 2023-07-20 | Don't translate compiler-internal bug messages | Oli Scherer | -1/+1 |
| 2023-07-20 | Auto merge of #108714 - estebank:ice_dump, r=oli-obk | bors | -1/+1 |
| 2023-07-19 | Make it clearer that edition functions are >=, not == | Michael Goulet | -1/+1 |
| 2023-07-19 | On nightly, dump ICE backtraces to disk | Esteban Küber | -1/+1 |
| 2023-07-12 | Re-format let-else per rustfmt update | Mark Rousskov | -23/+26 |
| 2023-07-03 | perform TokenStream replacement in-place when possible in expand_macro | The 8472 | -2/+1 |
| 2023-06-28 | Rollup merge of #111571 - jhpratt:proc-macro-span, r=m-ou-se | Dylan DPC | -12/+11 |
| 2023-06-27 | Rollup merge of #113084 - WaffleLapkin:less_map_or, r=Nilstrieb | Matthias Krüger | -1/+1 |
| 2023-06-27 | Simplify some conditions | Maybe Waffle | -1/+1 |
| 2023-06-21 | Fix msg passed to span_bug | Raminder Singh | -1/+1 |
| 2023-06-20 | Add `Span::{line, column}` | Jacob Pratt | -0/+10 |
| 2023-06-20 | `Span::{before, after}` → `Span::{start, end}` | Jacob Pratt | -2/+2 |
| 2023-06-20 | Remove `LineColumn`, `Span::start`, `Span::end` | Jacob Pratt | -12/+1 |
| 2023-06-16 | Add `SyntaxContext::is_root` | Maybe Waffle | -2/+2 |
| 2023-06-10 | expand: Change how `#![cfg(FALSE)]` behaves on crate root | Vadim Petrochenkov | -7/+21 |
| 2023-06-08 | Rollup merge of #112396 - WaffleLapkin:track_more_diagnostics, r=compiler-errors | Guillaume Gomez | -0/+5 |
| 2023-06-07 | Track more diagnostics in `rustc_expand` | Maybe Waffle | -0/+5 |
| 2023-06-07 | Auto merge of #109005 - Nilstrieb:dont-forgor-too-much-from-cfg, r=petrochenkov | bors | -12/+61 |
| 2023-06-07 | feat(expand): emit note for doc comment in macro matcher | bohan | -11/+35 |
| 2023-06-06 | fix(expand): prevent infinity loop in macro containing only "///" | bohan | -0/+2 |