Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rollup of PRs in the queue; Friday #24524

Merged
merged 47 commits into from
Apr 17, 2015
Merged

Rollup of PRs in the queue; Friday #24524

merged 47 commits into from
Apr 17, 2015

Commits on Apr 14, 2015

  1. Add "trace-macros" as a compiler flag

    Thomas Jespersen committed Apr 14, 2015
    Configuration menu
    Copy the full SHA
    d14109e View commit details
    Browse the repository at this point in the history
  2. Add "run-make" test for trace-macros flag

    Thomas Jespersen committed Apr 14, 2015
    Configuration menu
    Copy the full SHA
    bed2d33 View commit details
    Browse the repository at this point in the history
  3. Fix: sess.opt should have been sess.opts

    Thomas Jespersen committed Apr 14, 2015
    Configuration menu
    Copy the full SHA
    35b49fe View commit details
    Browse the repository at this point in the history
  4. Remove -o flag from build command

    It generates a warning that --outdir argument is ignored, which is
    captured and spoils the output
    
    Also ensure that test output is captured in a different file than the
    expected output file
    Thomas Jespersen committed Apr 14, 2015
    Configuration menu
    Copy the full SHA
    5e1505f View commit details
    Browse the repository at this point in the history

Commits on Apr 15, 2015

  1. Configuration menu
    Copy the full SHA
    53b7a06 View commit details
    Browse the repository at this point in the history
  2. Implement traits for parser error structs

    Implement `Debug`, `Display` and `Error` for `FatalError` and `ExplicitBug`
    aochagavia committed Apr 15, 2015
    Configuration menu
    Copy the full SHA
    9891ea7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6a95d90 View commit details
    Browse the repository at this point in the history
  4. clean visit_expr

    arielb1 committed Apr 15, 2015
    Configuration menu
    Copy the full SHA
    9e1a078 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    9c1dfed View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    fd8c592 View commit details
    Browse the repository at this point in the history
  7. Make sure to disambiguate obtained out from expected output

    Thomas Jespersen committed Apr 15, 2015
    Configuration menu
    Copy the full SHA
    3a20363 View commit details
    Browse the repository at this point in the history

Commits on Apr 16, 2015

  1. Fix some documentation typos

    lgrz committed Apr 16, 2015
    Configuration menu
    Copy the full SHA
    c1f6d6a View commit details
    Browse the repository at this point in the history
  2. Fix Debug impl for RangeFull

    The Debug impl was using quotes, which was inconsistent:
    
        => (.., 1.., 2..3, ..4)
        ("..", 1.., 2..3, ..4)
    
    Fix to use just ..
    Ulrik Sverdrup committed Apr 16, 2015
    Configuration menu
    Copy the full SHA
    709b5e8 View commit details
    Browse the repository at this point in the history
  3. Fix link id for stackoverflow

    The document does not display properly if the link id contains a space.
    aethanyc committed Apr 16, 2015
    Configuration menu
    Copy the full SHA
    7d56fb2 View commit details
    Browse the repository at this point in the history
  4. Use BTreeMap in build_sidebar_items

    This ensures that later when generating HTML, the JSON will be sorted aswell.
    We now have a deterministic build of sidebar-items.js
    mvdnes committed Apr 16, 2015
    Configuration menu
    Copy the full SHA
    61ad9fe View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d40e1cb View commit details
    Browse the repository at this point in the history
  6. Remove & from redirected output

    This seems to fix the test
    Thomas Jespersen committed Apr 16, 2015
    Configuration menu
    Copy the full SHA
    c0139ca View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    f20497c View commit details
    Browse the repository at this point in the history
  8. Add Debug to MethodCallee

    This fixes rust-lang#24497
    Munksgaard committed Apr 16, 2015
    Configuration menu
    Copy the full SHA
    4436ade View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    1c6ccd9 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    6de33c2 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    e6f1a4d View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    c776d02 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    dabc486 View commit details
    Browse the repository at this point in the history
  14. Fix broken links in the docs

    fhartwig committed Apr 16, 2015
    Configuration menu
    Copy the full SHA
    6ac836f View commit details
    Browse the repository at this point in the history
  15. Update hello-cargo.md

    j1n3l0 committed Apr 16, 2015
    Configuration menu
    Copy the full SHA
    d04b204 View commit details
    Browse the repository at this point in the history

Commits on Apr 17, 2015

  1. Link up some stuff in the vectors chapter

    Fixes rust-lang#24070
    
    or rather, fixes it even though it's already been fixed: slices are before now. But the linking is nice anyway.
    steveklabnik committed Apr 17, 2015
    Configuration menu
    Copy the full SHA
    d9515ad View commit details
    Browse the repository at this point in the history
  2. Rollup merge of rust-lang#24430 - laumann:trace-macros-flag, r=pnkfelix

     This is the second attempt at turning the trace_macros macro into a compiler flag.
    
    See rust-lang#22619
    Manishearth committed Apr 17, 2015
    Configuration menu
    Copy the full SHA
    3734636 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3118cd7 View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#24454 - aochagavia:debug, r=alexcrichton

     Implement `Debug`, `Display` and `Error` for `FatalError` and `ExplicitBug`
    Manishearth committed Apr 17, 2015
    Configuration menu
    Copy the full SHA
    9c4995f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a1bb0a1 View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#24491 - bluss:rangefull-debug, r=huonw

     Fix Debug impl for RangeFull
    
    The Debug impl was using quotes, which was inconsistent:
    
        => (.., 1.., 2..3, ..4)
        (\"..\", 1.., 2..3, ..4)
    
    Fix to use just ..
    Manishearth committed Apr 17, 2015
    Configuration menu
    Copy the full SHA
    bdef7f6 View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#23782 - mvdnes:obsolete_note, r=alexcrichton

     When emmitting a note, previously it was not known if the note was for an error or a
    warning. If it was for a warning, then with `-Awarnings` it should not have been print.
    The `emit_for` function allows someone to specify which level should determine its visibility.
    
    An example:
    ```rust
    extern crate \"std\" as std2;
    fn main() {}
    ```
    
    When compiling with `-Awarnings`, this would previously emit `note: use an identifier not in quotes instead` (and nothing else).
    With this patch, it will be completely silent as expected.
    Manishearth committed Apr 17, 2015
    Configuration menu
    Copy the full SHA
    e81cb17 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    3b7f2ce View commit details
    Browse the repository at this point in the history
  9. Rollup merge of rust-lang#24493 - aethanyc:fix-stackoverflow-link, r=…

    …steveklabnik
    
     The document does not display properly if the link id contains a space.
    Manishearth committed Apr 17, 2015
    Configuration menu
    Copy the full SHA
    28bc94a View commit details
    Browse the repository at this point in the history
  10. Rollup merge of rust-lang#24494 - mvdnes:deterministic-sidebar, r=ale…

    …xcrichton
    
     This ensures that later when generating HTML, the JSON will be sorted aswell.
    We now have a more deterministic build of sidebar-items.js
    
    Closes rust-lang#24473
    Manishearth committed Apr 17, 2015
    Configuration menu
    Copy the full SHA
    89bfacc View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    38588ec View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    32c7010 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    d300943 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    7c3975a View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    52db185 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    1d26e5f View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    6fcd852 View commit details
    Browse the repository at this point in the history
  18. Rollup merge of rust-lang#24510 - fhartwig:broken-links, r=nikomatsakis

     Fix broken links in various parts of the docs.
    I also found a dead link [here](http://doc.rust-lang.org/nightly/alloc/boxed/) (the first link on the page), but the chapter of the book that it used to point at seems to be gone, and I'm not sure what should happen to that link.
    Manishearth committed Apr 17, 2015
    Configuration menu
    Copy the full SHA
    2688ceb View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    27dc069 View commit details
    Browse the repository at this point in the history
  20. Rollup merge of rust-lang#24515 - steveklabnik:gh24070, r=Gankro

     Fixes rust-lang#24070
    
    or rather, fixes it even though it's already been fixed: slices are before now. But the linking is nice anyway.
    Manishearth committed Apr 17, 2015
    Configuration menu
    Copy the full SHA
    1b6bd92 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    c98115c View commit details
    Browse the repository at this point in the history