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 12 pull requests #47870

Merged
merged 38 commits into from
Jan 30, 2018
Merged

Rollup of 12 pull requests #47870

merged 38 commits into from
Jan 30, 2018

Commits on Jan 17, 2018

  1. Configuration menu
    Copy the full SHA
    c2e2612 View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2018

  1. Run rustfmt and add comments

    mark-i-m committed Jan 19, 2018
    Configuration menu
    Copy the full SHA
    c4befe1 View commit details
    Browse the repository at this point in the history
  2. Add a bunch of doc comments

    mark-i-m committed Jan 19, 2018
    Configuration menu
    Copy the full SHA
    49431d4 View commit details
    Browse the repository at this point in the history

Commits on Jan 21, 2018

  1. Fix typos

    mark-i-m committed Jan 21, 2018
    Configuration menu
    Copy the full SHA
    ca0c080 View commit details
    Browse the repository at this point in the history

Commits on Jan 25, 2018

  1. Configuration menu
    Copy the full SHA
    831ff77 View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2018

  1. make Command.argv Send on unix platforms

    Implementing Send for a specific field rather than the whole struct is
    safer: if a field is changed/modified and becomes non-Send, we can catch
    it.
    little-dude committed Jan 26, 2018
    Configuration menu
    Copy the full SHA
    9e6ed17 View commit details
    Browse the repository at this point in the history
  2. Add line numbers and columns to error messages spanning multiple files

    If an error message is emitted that spans several files, only the
    primary file currently has line and column data attached. This is
    useful information, even in files other than the one in which the error
    occurs. We can often work out which line and column the error
    corresponds to in other files — in this case it is helpful to add them
    (in the case of ambiguity, the first relevant line/column is picked,
    which is still helpful than none).
    varkor committed Jan 26, 2018
    Configuration menu
    Copy the full SHA
    0ac4659 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    077d343 View commit details
    Browse the repository at this point in the history
  4. Fix test in macro_backtrace

    varkor committed Jan 26, 2018
    Configuration menu
    Copy the full SHA
    aa6cc6e View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    ac0c16d View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    0d7f193 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    6d4ed65 View commit details
    Browse the repository at this point in the history
  8. Added/improved comments

    mark-i-m committed Jan 26, 2018
    Configuration menu
    Copy the full SHA
    b01b481 View commit details
    Browse the repository at this point in the history
  9. Still more comments

    mark-i-m committed Jan 26, 2018
    Configuration menu
    Copy the full SHA
    02d1d92 View commit details
    Browse the repository at this point in the history
  10. A few more comments

    mark-i-m committed Jan 26, 2018
    Configuration menu
    Copy the full SHA
    e2d558a View commit details
    Browse the repository at this point in the history

Commits on Jan 27, 2018

  1. Configuration menu
    Copy the full SHA
    a21b7b3 View commit details
    Browse the repository at this point in the history

Commits on Jan 28, 2018

  1. Whitelist aes x86 feature flag

    Required to fix rust-lang/stdarch#295 in stdsimd.
    
    r? @alexcrichton
    gnzlbg authored Jan 28, 2018
    Configuration menu
    Copy the full SHA
    2497d10 View commit details
    Browse the repository at this point in the history
  2. Whitelist v7 feature for ARM and AARCH64.

    Needed for `v7` features in `coresimd`. 
    
    See https://github.com/rust-lang-nursery/stdsimd/blob/b2f7be24d5043a88427f9a5258ca9a51ede6d029/coresimd/src/arm/v7.rs#L40 which used to work but doesn't anymore.
    
    r? alexcrichton
    gnzlbg authored Jan 28, 2018
    Configuration menu
    Copy the full SHA
    b32dbbc View commit details
    Browse the repository at this point in the history

Commits on Jan 29, 2018

  1. Configuration menu
    Copy the full SHA
    7b4cbbd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e09a8bd View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8389b66 View commit details
    Browse the repository at this point in the history
  4. Make run-pass/env-home-dir.rs test more robust

    Remove the assumption that home_dir always returns Some
    
    This allows the test to be executed with
    [cross](https://github.com/japaric/cross).
    malbarbo committed Jan 29, 2018
    Configuration menu
    Copy the full SHA
    898fdcc View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    adeb0ae View commit details
    Browse the repository at this point in the history
  6. rustdoc: Fix link title rendering with hoedown

    The link title needs to be HTML escaped.
    ollie27 committed Jan 29, 2018
    Configuration menu
    Copy the full SHA
    ae98f4c View commit details
    Browse the repository at this point in the history
  7. Update comment

    mark-i-m committed Jan 29, 2018
    Configuration menu
    Copy the full SHA
    2184400 View commit details
    Browse the repository at this point in the history
  8. fix typos

    mark-i-m committed Jan 29, 2018
    Configuration menu
    Copy the full SHA
    5762942 View commit details
    Browse the repository at this point in the history

Commits on Jan 30, 2018

  1. Rollup merge of rust-lang#47515 - jimmantooth:patch-1, r=QuietMisdreavus

    Punctuation and clarity fixes.
    kennytm authored Jan 30, 2018
    Configuration menu
    Copy the full SHA
    19aac09 View commit details
    Browse the repository at this point in the history
  2. Rollup merge of rust-lang#47603 - mark-i-m:markim_comments_0000, r=js…

    …eyfried
    
    Run rustfmt and add doc comments to libsyntax/ext/tt/quoted.rs
    
    I was already going to try to understand this code to try to implement rust-lang/rfcs#2298. I figured I would put that knowledge into comments and share... This PR contains _no changes_ to the code itself -- just formatting and comments.
    
    I'm not sure what the best way to do this is. I plan to make more such PR for other files, but I figured it would have fewer conflicts if I do it file by file...
    kennytm authored Jan 30, 2018
    Configuration menu
    Copy the full SHA
    3e39180 View commit details
    Browse the repository at this point in the history
  3. Rollup merge of rust-lang#47718 - malbarbo:env-home-dir, r=nikomatsakis

    Make run-pass/env-home-dir.rs test more robust
    
    Remove the assumption that home_dir always returns Some.
    
    This allows the test to be executed with [cross](https://github.com/japaric/cross).
    kennytm authored Jan 30, 2018
    Configuration menu
    Copy the full SHA
    fccc85a View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#47732 - mark-i-m:markim_comments_0001, r=js…

    …eyfried
    
    Run rustfmt and add doc comments to libsyntax/ext/tt/macro_parser.rs
    
    Similar to rust-lang#47603
    
    cc @theotherphil since you reviewed my other PR 😄
    
    And because they are already assigned on rust-lang#47603:
    
    r? @arielb1
    kennytm authored Jan 30, 2018
    Configuration menu
    Copy the full SHA
    f06a391 View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#47760 - little-dude:master, r=alexcrichton

    implement Send for process::Command on unix
    
    closes rust-lang#47751
    kennytm authored Jan 30, 2018
    Configuration menu
    Copy the full SHA
    4dbfc8d View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#47780 - varkor:cross-file-errors-line-col, …

    …r=estebank
    
    Add line numbers and columns to error messages spanning multiple files
    
    If an error message is emitted that spans several files, only the
    primary file currently has line and column data attached. This is
    useful information, even in files other than the one in which the error
    occurs. We can often work out which line and column the error
    corresponds to in other files — in this case it is helpful to add them
    (in the case of ambiguity, the first relevant line/column is picked,
    which is still helpful than none).
    kennytm authored Jan 30, 2018
    Configuration menu
    Copy the full SHA
    44b9641 View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#47822 - gnzlbg:patch-1, r=alexcrichton

    Whitelist aes x86 feature flag
    
    Required to fix rust-lang/stdarch#295 in stdsimd.
    
    Closes rust-lang#44544 .
    
    r? @alexcrichton
    kennytm authored Jan 30, 2018
    Configuration menu
    Copy the full SHA
    003254e View commit details
    Browse the repository at this point in the history
  8. Rollup merge of rust-lang#47826 - gnzlbg:patch-2, r=alexcrichton

    Whitelist v7 feature for ARM and AARCH64.
    
    Needed for `v7` features in `coresimd`.
    
    See https://github.com/rust-lang-nursery/stdsimd/blob/b2f7be24d5043a88427f9a5258ca9a51ede6d029/coresimd/src/arm/v7.rs#L40 which used to work but doesn't anymore.
    
    r? alexcrichton
    kennytm authored Jan 30, 2018
    Configuration menu
    Copy the full SHA
    16d3fdb View commit details
    Browse the repository at this point in the history
  9. Rollup merge of rust-lang#47836 - Mark-Simulacrum:stage-flags, r=alex…

    …crichton
    
    Add per-stage RUSTFLAGS: RUSTFLAGS_STAGE_{0,1,2} and RUSTFLAGS_STAGE_NOT_0
    
    Fixes rust-lang#47658.
    
    r? @alexcrichton
    kennytm authored Jan 30, 2018
    Configuration menu
    Copy the full SHA
    e8868bd View commit details
    Browse the repository at this point in the history
  10. Rollup merge of rust-lang#47839 - frewsxcv:frewsxcv-map-index, r=Quie…

    …tMisdreavus
    
    Document that `Index` ops can panic on `HashMap` & `BTreeMap`.
    
    Fixes rust-lang#47011.
    kennytm authored Jan 30, 2018
    Configuration menu
    Copy the full SHA
    95572df View commit details
    Browse the repository at this point in the history
  11. Rollup merge of rust-lang#47853 - rust-lang:increase-nested-groups-te…

    …st-coverage, r=nikomatsakis
    
    Increase test coverage of use_nested_groups
    
    r? @nikomatsakis
    kennytm authored Jan 30, 2018
    Configuration menu
    Copy the full SHA
    b83fb0f View commit details
    Browse the repository at this point in the history
  12. Rollup merge of rust-lang#47855 - ollie27:rustdoc_hoedown_link_title,…

    … r=QuietMisdreavus
    
    rustdoc: Fix link title rendering with hoedown
    
    The link title needs to be HTML escaped.
    
    It was broken by rust-lang#47046.
    
    r? @QuietMisdreavus
    kennytm authored Jan 30, 2018
    Configuration menu
    Copy the full SHA
    393a199 View commit details
    Browse the repository at this point in the history