| Age | Commit message (Expand) | Author | Lines |
| 2013-06-11 | fix tests, remove some warnings | Huon Wilson | -7/+2 |
| 2013-06-10 | std: remove str::{connect,concat}*. | Huon Wilson | -22/+15 |
| 2013-06-10 | clean-up unused import warnings | Huon Wilson | -3/+1 |
| 2013-06-10 | std: convert str::char_at* to methods. | Huon Wilson | -2/+2 |
| 2013-06-10 | std: convert str::reserve* to methods, and methodise str::push_*. | Huon Wilson | -19/+19 |
| 2013-06-10 | std: replace str::{any,all}_between with the iterator equivalent. | Huon Wilson | -1/+1 |
| 2013-06-10 | std: convert character-based str::find_* to methods. Add .slice_{to,from} met... | Huon Wilson | -6/+5 |
| 2013-06-10 | std: remove str::{len, slice, is_empty} in favour of methods. | Huon Wilson | -13/+12 |
| 2013-06-10 | std: replace str::all/any fns and methods with iterators | Huon Wilson | -1/+2 |
| 2013-06-10 | std: replace str::each_split* with an iterator | Huon Wilson | -6/+5 |
| 2013-06-08 | remove deprecated vec::{is_empty, len} functions | Daniel Micay | -5/+5 |
| 2013-06-08 | auto merge of #7004 : dotdash/rust/allocs, r=thestinger | bors | -44/+60 |
| 2013-06-09 | remove unused import warnings | Huon Wilson | -16/+11 |
| 2013-06-09 | std: replace the str::each* fns/methods with byte iterators | Huon Wilson | -1/+2 |
| 2013-06-09 | std: remove each_char* fns and methods from str, replaced by iterators. | Huon Wilson | -2/+3 |
| 2013-06-09 | std: remove foldr and alli methods in vec | Huon Wilson | -7/+9 |
| 2013-06-09 | std: remove fold[lr] in favour of iterators | Huon Wilson | -12/+12 |
| 2013-06-08 | Lexer: Fix offset handling in get_str_from() | Björn Steinbrink | -10/+8 |
| 2013-06-08 | Lexer: Avoid unnecessary allocations | Björn Steinbrink | -42/+57 |
| 2013-06-08 | Avoid unnecessary (re-)allocations in the lexer | Björn Steinbrink | -7/+8 |
| 2013-06-08 | std: remove each[i]_mut functions, in favour of iterators. | Huon Wilson | -3/+4 |
| 2013-06-08 | std: remove vec::each2 and vec::each2_mut in favour of iterators | Huon Wilson | -2/+3 |
| 2013-06-07 | syntax: correct the modifications to deriving(Ord) so that it works. | Huon Wilson | -30/+13 |
| 2013-06-07 | syntax: rewrite deriving(Ord) to not require Eq. | Huon Wilson | -57/+59 |
| 2013-06-07 | syntax: move expand_generic_deriving to be a method on TraitDef | Huon Wilson | -55/+37 |
| 2013-06-07 | syntax: move functions from deriving/mod to deriving/generic. | Huon Wilson | -277/+199 |
| 2013-06-06 | auto merge of #6982 : Aatch/rust/better-foreign-error, r=pcwalton | bors | -2/+2 |
| 2013-06-07 | Provide an actual error when expanding macros to foreign items | James Miller | -2/+2 |
| 2013-06-06 | implement fold traversing macros | John Clements | -3/+38 |
| 2013-06-06 | add test cases for fold traversing macros | John Clements | -0/+150 |
| 2013-06-06 | Clean up a handful of build warnings. | Michael Sullivan | -13/+13 |
| 2013-06-06 | Deduplicate words in code comments | Alexei Sholik | -3/+3 |
| 2013-06-05 | moved TLS of sctable to ast_util, hid parameter in hygiene calls | John Clements | -81/+103 |
| 2013-06-05 | added fresh-name fn | John Clements | -0/+28 |
| 2013-06-05 | add hygiene support functions | John Clements | -27/+78 |
| 2013-06-05 | remove unused get_ident_interner's | John Clements | -5/+5 |
| 2013-06-05 | removed unused imports (and one unused argument) | John Clements | -18/+10 |
| 2013-06-05 | remove interner field from string_reader | John Clements | -28/+16 |
| 2013-06-05 | remove interner from tt_reader | John Clements | -11/+3 |
| 2013-06-05 | remove unused cx's | John Clements | -96/+96 |
| 2013-06-05 | token_to_ident takes argument by reference | John Clements | -22/+22 |
| 2013-06-05 | interner just uses uints, not idents with syntax context | John Clements | -132/+165 |
| 2013-06-05 | removed some interner fields | John Clements | -10/+1 |
| 2013-06-05 | just use TLS interner | John Clements | -75/+84 |
| 2013-06-05 | rename repr to name | John Clements | -104/+104 |
| 2013-06-05 | removed obsolete reference to purity | John Clements | -3/+0 |
| 2013-06-05 | parser comments | John Clements | -1/+2 |
| 2013-06-05 | comments & whitespace | John Clements | -0/+3 |
| 2013-06-05 | change to newer macro escape mechanism, using uints in more places | John Clements | -128/+166 |
| 2013-06-05 | add renaming and sctable funs | John Clements | -1/+48 |