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 #56506

Closed
wants to merge 36 commits into from
Closed

Rollup of 12 pull requests #56506

wants to merge 36 commits into from

Commits on Nov 21, 2018

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

Commits on Nov 28, 2018

  1. Add crate filtering

    GuillaumeGomez committed Nov 28, 2018
    Configuration menu
    Copy the full SHA
    dd717de View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8062c7a View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2018

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

Commits on Nov 30, 2018

  1. Configuration menu
    Copy the full SHA
    1560a75 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d92287a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4f5b8ea View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    6000c2e View commit details
    Browse the repository at this point in the history

Commits on Dec 2, 2018

  1. rustbuild: Fix issues with compiler docs

    * Create output directories for crates beforehand so rustdoc uses relative links
    * Readd rustc_codegen_ssa
    * Don't build out of tree dependencies for rustdoc like we don't for rustc
    ollie27 committed Dec 2, 2018
    Configuration menu
    Copy the full SHA
    3b705a0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f31b6ab View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    39a4238 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7a3d7b1 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    3d809d3 View commit details
    Browse the repository at this point in the history

Commits on Dec 3, 2018

  1. Add rc::Weak.ptr_eq

    Thomasdezeeuw committed Dec 3, 2018
    Configuration menu
    Copy the full SHA
    380dd7d View commit details
    Browse the repository at this point in the history
  2. Add sync::Weak::ptr_eq

    Thomasdezeeuw committed Dec 3, 2018
    Configuration menu
    Copy the full SHA
    d4b41fa View commit details
    Browse the repository at this point in the history
  3. Fix link in Weak::new

    Thomasdezeeuw committed Dec 3, 2018
    Configuration menu
    Copy the full SHA
    38e21f9 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    1fb82b5 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    651373c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    9c8802d View commit details
    Browse the repository at this point in the history
  7. link to raw identifiers

    mark-i-m committed Dec 3, 2018
    Configuration menu
    Copy the full SHA
    0b40be6 View commit details
    Browse the repository at this point in the history
  8. Improve filter test

    GuillaumeGomez committed Dec 3, 2018
    Configuration menu
    Copy the full SHA
    3f253f5 View commit details
    Browse the repository at this point in the history

Commits on Dec 4, 2018

  1. Configuration menu
    Copy the full SHA
    11af6f6 View commit details
    Browse the repository at this point in the history
  2. Fix test

    sinkuu committed Dec 4, 2018
    Configuration menu
    Copy the full SHA
    4e31282 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8c4129c View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#55466 - sinkuu:cleanup, r=petrochenkov

    syntax: Use iterator and pattern APIs instead of `char_at`
    
    Iterating over chars with the `char_at(str, i)` `i += ch.len_utf8()` loop seems unidiomatic.
    kennytm authored Dec 4, 2018
    Configuration menu
    Copy the full SHA
    7ffd99e View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#55563 - GuillaumeGomez:doc-search-sentence,…

    … r=QuietMisdreavus
    
    Improve no result found sentence in doc search
    
    Fixes rust-lang#55531.
    
    Look:
    
    <img width="1440" alt="screenshot 2018-11-01 at 02 21 56" src="https://user-images.githubusercontent.com/3050060/47827257-f6236c80-dd7c-11e8-9ea9-99c8cb4b2de5.png">
    
    r? @QuietMisdreavus
    kennytm authored Dec 4, 2018
    Configuration menu
    Copy the full SHA
    1bca455 View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#55987 - Thomasdezeeuw:weak-ptr_eq, r=sfackler

    Add Weak.ptr_eq
    
    I hope the doc tests alone are good enough.
    
    We also might want to discuss the dangling pointer case (from `Weak::new()`).
    
    Updates rust-lang#55981.
    kennytm authored Dec 4, 2018
    Configuration menu
    Copy the full SHA
    8a5cb26 View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#56332 - GuillaumeGomez:specifi-crate-search…

    …, r=QuietMisdreavus
    
    [rustdoc] Specific crate search
    
    Reopening of rust-lang#54706.
    Fixes rust-lang#54616.
    
    <img width="1440" alt="screenshot 2018-11-29 at 01 29 11" src="https://user-images.githubusercontent.com/3050060/49191372-979adf80-f376-11e8-963e-e4feb927c1da.png">
    
    r? @QuietMisdreavus
    kennytm authored Dec 4, 2018
    Configuration menu
    Copy the full SHA
    40337a1 View commit details
    Browse the repository at this point in the history
  8. Rollup merge of rust-lang#56372 - wildarch:issue-55314-second-borrow-…

    …ref, r=davidtwco
    
    Refer to the second borrow as the "second borrow" in E0501.rs
    
    Fixes rust-lang#55314.
    
    r? @davidtwco
    kennytm authored Dec 4, 2018
    Configuration menu
    Copy the full SHA
    8d4f83e View commit details
    Browse the repository at this point in the history
  9. Rollup merge of rust-lang#56388 - matthewjasper:more-lexical-mir-clea…

    …nup, r=nikomatsakis
    
    More MIR borrow check cleanup
    
    * Fix some rustc doc links
    * Remove the `region_map` field from `BorrowSet`
    *  Use `visit_local` to find 2PB activations
    
    r? @nikomatsakis
    kennytm authored Dec 4, 2018
    Configuration menu
    Copy the full SHA
    491411b View commit details
    Browse the repository at this point in the history
  10. Rollup merge of rust-lang#56424 - mark-i-m:explain-raw, r=Centril

    Mention raw-ident syntax
    
    According to rust-lang#56419 (review)
    
    Blocked on rust-lang#56419
    
    r? @Centril
    kennytm authored Dec 4, 2018
    Configuration menu
    Copy the full SHA
    8f746a6 View commit details
    Browse the repository at this point in the history
  11. Rollup merge of rust-lang#56441 - ollie27:rustbuild_compiler_docs, r=…

    …alexcrichton
    
    rustbuild: Fix issues with compiler docs
    
    * Create output directories for crates beforehand so rustdoc uses relative links (fixes rust-lang#56107)
    * Readd rustc_codegen_ssa (fixes rust-lang#56196)
    * Don't build out of tree dependencies for rustdoc like we don't for rustc
    kennytm authored Dec 4, 2018
    Configuration menu
    Copy the full SHA
    3dfaeab View commit details
    Browse the repository at this point in the history
  12. Rollup merge of rust-lang#56444 - petrochenkov:uifull, r=davidtwco

    Move compile-fail-fulldeps tests to UI
    
    cc rust-lang#53353
    
    r? @davidtwco
    kennytm authored Dec 4, 2018
    Configuration menu
    Copy the full SHA
    2d7e7cf View commit details
    Browse the repository at this point in the history
  13. Rollup merge of rust-lang#56456 - oli-obk:private_impl_trait, r=cramertj

    Handle existential types in dead code analysis
    
    fixes rust-lang#55124
    
    r? @cramertj
    kennytm authored Dec 4, 2018
    Configuration menu
    Copy the full SHA
    939de36 View commit details
    Browse the repository at this point in the history
  14. Rollup merge of rust-lang#56466 - ljedrz:delete_tuple_slice, r=nikoma…

    …tsakis
    
    data_structures: remove tuple_slice
    
    It looks like we're not using it anywhere.
    kennytm authored Dec 4, 2018
    Configuration menu
    Copy the full SHA
    5985875 View commit details
    Browse the repository at this point in the history
  15. Rollup merge of rust-lang#56497 - ljedrz:cleanup_libstd_const_lifetim…

    …es, r=kennytm
    
    cleanup: remove static lifetimes from consts in libstd
    kennytm authored Dec 4, 2018
    Configuration menu
    Copy the full SHA
    81d043b View commit details
    Browse the repository at this point in the history