| Age | Commit message (Expand) | Author | Lines |
| 2013-02-19 | replace explicit loops with foldr | Daniel Micay | -12/+7 |
| 2013-02-19 | auto merge of #5039 : alexcrichton/rust/issue-4875, r=catamorphism | bors | -1/+27 |
| 2013-02-19 | add range assert when loading bools | Daniel Micay | -6/+11 |
| 2013-02-19 | use range assert when loading enum discriminant | Daniel Micay | -3/+54 |
| 2013-02-19 | auto merge of #5006 : tedhorst/rust/linear_mand, r=brson | bors | -40/+44 |
| 2013-02-19 | Fix for issue 4875 | Alex Crichton | -1/+27 |
| 2013-02-19 | auto merge of #5000 : jld/rust/test-stdin-thing, r=graydon | bors | -7/+1 |
| 2013-02-19 | auto merge of #4999 : erickt/rust/incoming, r=brson | bors | -853/+898 |
| 2013-02-19 | auto merge of #5032 : lifthrasiir/rust/issue-4935, r=catamorphism | bors | -1/+15 |
| 2013-02-19 | librustc: change driver::session::Session::str_of to return @~str | Erick Tryzelaar | -219/+226 |
| 2013-02-19 | librustc: minor cleanup | Erick Tryzelaar | -45/+53 |
| 2013-02-19 | librustc: change check_item_non_camel_case_types to not copy | Erick Tryzelaar | -10/+7 |
| 2013-02-19 | librustc: convert creader and cstore to use @~strs | Erick Tryzelaar | -68/+67 |
| 2013-02-19 | librustc: minor cleanup | Erick Tryzelaar | -61/+56 |
| 2013-02-19 | librustc: convert lint_dict to take @~strs as keys | Erick Tryzelaar | -28/+33 |
| 2013-02-19 | librustc: convert LangItemsCollector::item_refs to take @~str as a key | Erick Tryzelaar | -46/+45 |
| 2013-02-19 | convert SyntaxExtensions's key to a @~str | Erick Tryzelaar | -31/+31 |
| 2013-02-19 | convert ast::meta_items to take @~strs | Erick Tryzelaar | -63/+64 |
| 2013-02-19 | convert syntax::attr to use @~strs | Erick Tryzelaar | -132/+130 |
| 2013-02-19 | Alias HashMap<~str, SyntaxExtension> to SyntaxExtensions | Erick Tryzelaar | -6/+8 |
| 2013-02-19 | libsyntax and librustc: minor cleanup | Erick Tryzelaar | -16/+11 |
| 2013-02-19 | libsyntax: change attr:get_attr_name to take a ref | Erick Tryzelaar | -11/+10 |
| 2013-02-19 | libsyntax: make enum variants take refs | Erick Tryzelaar | -104/+150 |
| 2013-02-19 | syntax: fix the indentation of a function | Erick Tryzelaar | -36/+36 |
| 2013-02-19 | Change functions from taking ~str to taking &str | Erick Tryzelaar | -9/+9 |
| 2013-02-19 | libsyntax: convert interner into a modern struct | Erick Tryzelaar | -42/+36 |
| 2013-02-20 | Check type when struct is matched against enum-like pattern | Seo Sanghyeon | -3/+23 |
| 2013-02-19 | auto merge of #5002 : catamorphism/rust/one-tuples, r=graydon | bors | -11/+69 |
| 2013-02-19 | test: fix seeded_rng uses | Graydon Hoare | -8/+8 |
| 2013-02-20 | fix ICE after incorrect number of args in calls | Kang Seonghoon | -1/+15 |
| 2013-02-19 | update copyright dates | Ted Horst | -1/+1 |
| 2013-02-19 | move shootout-mandelbrot to LinearMap, add depth argument | Ted Horst | -39/+43 |
| 2013-02-19 | std: update rand-using tests, r=burningtree | Graydon Hoare | -3/+3 |
| 2013-02-19 | rt: remove export of symbol removed in last commit, r=burningtree | Graydon Hoare | -1/+0 |
| 2013-02-19 | rt: fix memory-unsafe random seed logic, r=valgrindclean | Graydon Hoare | -66/+64 |
| 2013-02-19 | auto merge of #5014 : Kimundi/rust/incoming, r=graydon | bors | -0/+238 |
| 2013-02-18 | auto merge of #5028 : catamorphism/rust/bsd-breakage, r=catamorphism | bors | -0/+1 |
| 2013-02-18 | auto merge of #5017 : catamorphism/rust/less-copy, r=catamorphism | bors | -27/+28 |
| 2013-02-18 | auto merge of #5010 : youknowone/rust/match_const_typecheck, r=catamorphism | bors | -0/+18 |
| 2013-02-18 | core: Fix BSD breakage, I hope | Tim Chevalier | -0/+1 |
| 2013-02-18 | auto merge of #5005 : alexcrichton/rust/bitv++, r=catamorphism | bors | -195/+893 |
| 2013-02-19 | Added is_restricted() to path | Armin Ronacher | -0/+26 |
| 2013-02-18 | auto merge of #5004 : luqmana/rust/rename-use-import, r=catamorphism | bors | -41/+44 |
| 2013-02-18 | rustc: For one-tuples, make parsing and printing the type work | Tim Chevalier | -5/+26 |
| 2013-02-19 | Improved windows path handling support | Armin Ronacher | -18/+100 |
| 2013-02-18 | auto merge of #5001 : jld/rust/test-pub-fn-main, r=catamorphism | bors | -21/+21 |
| 2013-02-18 | rustc: Less copy in trans, rs=removing copies | Tim Chevalier | -27/+28 |
| 2013-02-18 | auto merge of #4998 : thestinger/rust/vec, r=catamorphism | bors | -7/+7 |
| 2013-02-18 | Refactored make_absolute into functionality on the Path | Armin Ronacher | -6/+32 |
| 2013-02-18 | auto merge of #4996 : luqmana/rust/no-rec-pipes, r=catamorphism | bors | -172/+179 |