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 6 pull requests #91862

Closed
wants to merge 17 commits into from

Commits on Oct 11, 2021

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

Commits on Dec 13, 2021

  1. Configuration menu
    Copy the full SHA
    b345e18 View commit details
    Browse the repository at this point in the history
  2. Rename TestOptions to GlobalTestOptions

    It seems to apply to all doctests in the crate.
    camelid committed Dec 13, 2021
    Configuration menu
    Copy the full SHA
    5e33e6a View commit details
    Browse the repository at this point in the history
  3. doctest: Rename options to rustdoc_options

    These are the rustdoc-wide options. It's easy to confuse them with
    options for doctests in particular, so this change should help.
    camelid committed Dec 13, 2021
    Configuration menu
    Copy the full SHA
    9afa190 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5ab1329 View commit details
    Browse the repository at this point in the history
  5. extra test for bug i found

    BoxyUwU committed Dec 13, 2021
    Configuration menu
    Copy the full SHA
    6c79595 View commit details
    Browse the repository at this point in the history
  6. Add -webkit-appearance: none to search input

    This fixes an issue when displaying on iPad, where the search box had no
    borders.
    jsha committed Dec 13, 2021
    Configuration menu
    Copy the full SHA
    da472a5 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    8a28c17 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    7cbd0dc View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    23e4aeb View commit details
    Browse the repository at this point in the history
  10. Adjust wording for review

    jackh726 committed Dec 13, 2021
    Configuration menu
    Copy the full SHA
    4897415 View commit details
    Browse the repository at this point in the history
  11. Rollup merge of rust-lang#89762 - nedv-eu:issue-85821-fix, r=pnkfelix

    Change default panic strategy to abort for wasm32-unknown-emscripten
    
    Emscripten v2.0.10 removed __gxx_personality_v0 function stub that panic-unwind in wam32-unknown-emscripten target depends on. This causes linker error when using newer versions of emscripten compiler. As mentioned in rust-lang#85821 (comment) the __gxx_personality_v0 function was just a stub in emscripten for several years and therefor the panic-unwind strategy was broken all the time. Changing default to abort fixes builds  (issue 85821) with recent version of emscripten yet we are not loosing any functionality as the panic-unwind was broken anyway. Fixes  rust-lang#85821
    matthiaskrgr committed Dec 13, 2021
    Configuration menu
    Copy the full SHA
    c3dbde2 View commit details
    Browse the repository at this point in the history
  12. Rollup merge of rust-lang#91699 - jsha:webkit-appearance-search-input…

    …, r=GuillaumeGomez
    
    Add `-webkit-appearance: none` to search input
    
    This fixes an issue when displaying on iPad, where the search box had no borders.
    
    r? `@GuillaumeGomez`
    
    Demo https://rustdoc.crud.net/jsha/webkit-appearance-search-input/std/string/struct.String.html
    matthiaskrgr committed Dec 13, 2021
    Configuration menu
    Copy the full SHA
    f17ffb8 View commit details
    Browse the repository at this point in the history
  13. Rollup merge of rust-lang#91846 - camelid:doctest-cleanup, r=Guillaum…

    …eGomez
    
    rustdoc: Reduce number of arguments for `run_test` a bit
    
    - rustdoc: Coalesce some `run_test` args as one `LangString` arg
    - Rename `TestOptions` to `GlobalTestOptions`
    - doctest: Rename `options` to `rustdoc_options`
    matthiaskrgr committed Dec 13, 2021
    Configuration menu
    Copy the full SHA
    112a4d1 View commit details
    Browse the repository at this point in the history
  14. Rollup merge of rust-lang#91847 - BoxyUwU:generic_arg_infer_fixme, r=…

    …lcnr
    
    Fix FIXME for `generic_arg_infer` in `create_substs_for_ast_path`
    
    Fixes a FIXME, does some general refactoring of this fn, and also fixes a bug where we would use a const params defaults instead of an inference var ([playground](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2021&gist=19456f65ea5dc3fcaa9b696f842ab380))
    (lot of stuff in one PR but it was all so close together...)
    
    r? `@lcnr`
    
    Fixes rust-lang#91614
    matthiaskrgr committed Dec 13, 2021
    Configuration menu
    Copy the full SHA
    7a5a3e1 View commit details
    Browse the repository at this point in the history
  15. Rollup merge of rust-lang#91849 - jackh726:gats-outlives-lint-part2, …

    …r=nikomatsakis
    
    GATs outlives lint: Try to prove bounds
    
    Fixes rust-lang#91036
    Fixes rust-lang#90888
    Fixes rust-lang#91348 (better error + documentation to be added to linked issue)
    
    Instead of checking for bounds directly, try to prove them in the associated type environment.
    
    Also, add a bit of extra information to the error, including a link to the relevant discussion issue (rust-lang#87479). That should be edited to include a brief summary of the current state of the outlives lint, including a brief background. It also might or might not be worth it to bump this to a full error code at some point.
    
    r? `@nikomatsakis`
    matthiaskrgr committed Dec 13, 2021
    Configuration menu
    Copy the full SHA
    a1c808d View commit details
    Browse the repository at this point in the history
  16. Rollup merge of rust-lang#91855 - xfix:const_cstr_unchecked, r=dtolnay

    Stabilize const_cstr_unchecked
    
    Closes rust-lang#90343
    
    `@rustbot` modify labels: +T-libs-api
    matthiaskrgr committed Dec 13, 2021
    Configuration menu
    Copy the full SHA
    c3275c1 View commit details
    Browse the repository at this point in the history