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

Closed
wants to merge 17 commits into from

Commits on Dec 20, 2022

  1. Configuration menu
    Copy the full SHA
    3dde32c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    42d100a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2c9d9bf View commit details
    Browse the repository at this point in the history

Commits on Dec 22, 2022

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

Commits on Dec 23, 2022

  1. rustdoc: use a more evocative name for CSS/JS #titles

    This renames the ID, which is only used in search results, to
    `#search-tabs`. Also changes the `.count` to a span, so it doesn't need its
    display mode to be overridden.
    notriddle committed Dec 23, 2022
    Configuration menu
    Copy the full SHA
    d60309b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7c6aa7c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d0f404d View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a48d2e1 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    1174aac View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    ddd9591 View commit details
    Browse the repository at this point in the history
  7. rustdoc: remove no-op CSS from .docblock-short

    The rules `overflow:hidden` and `text-overflow:ellipses` only have an
    effect if overflow occurs, which cannot happen because it will just line
    wrap instead.
    
    These rules definitely became obsolete by
    rust-lang#77699, when the stylesheet was
    decidedly changed to have line wrapping in short docblocks, but given the
    bug it was fixing, this probably got broken earlier.
    notriddle committed Dec 23, 2022
    Configuration menu
    Copy the full SHA
    1c05d4b View commit details
    Browse the repository at this point in the history
  8. Rollup merge of rust-lang#105970 - Ezrashaw:add-docs+test-e0462, r=Gu…

    …illaumeGomez
    
    docs/test: add UI test and long-form error docs for E0462
    
    Another UI test/ docs combo.
    
    r? `@GuillaumeGomez`
    matthiaskrgr committed Dec 23, 2022
    Configuration menu
    Copy the full SHA
    441c32a View commit details
    Browse the repository at this point in the history
  9. Rollup merge of rust-lang#105975 - jeremystucki:rustc-remove-needless…

    …-lifetimes, r=eholk
    
    rustc: Remove needless lifetimes
    matthiaskrgr committed Dec 23, 2022
    Configuration menu
    Copy the full SHA
    06d351c View commit details
    Browse the repository at this point in the history
  10. Rollup merge of rust-lang#106069 - notriddle:notriddle/search-tabs, r…

    …=GuillaumeGomez
    
    rustdoc: use a more evocative name for CSS/JS `#titles`
    
    This renames the ID, which is only used in search results, to `#search-tabs`. Also changes the `.count` to a span, so it doesn't need its display mode to be overridden.
    matthiaskrgr committed Dec 23, 2022
    Configuration menu
    Copy the full SHA
    845f973 View commit details
    Browse the repository at this point in the history
  11. Rollup merge of rust-lang#106084 - RalfJung:into-iter, r=thomcc

    fix vec::IntoIter::drop on high-alignment ZST
    
    This fixes a soundness bug: IntoIter would call `drop_in_place` on an insufficiently aligned pointer. So if a ZST with alignment greater 1 had drop glue, that would be called with an unaligned reference. Since rust-lang#103957, Miri checks alignment even if the type does not have drop glue, which is how this bug was found.
    
    r? `@thomcc`
    matthiaskrgr committed Dec 23, 2022
    Configuration menu
    Copy the full SHA
    3b4acbc View commit details
    Browse the repository at this point in the history
  12. Rollup merge of rust-lang#106091 - GuillaumeGomez:correct-css-pseudo-…

    …element, r=notriddle
    
    Use correct CSS pseudo-element selector
    
    Pseudo-element should use "::" to not be confused with pseudo selectors (nice explanation here: https://css-tricks.com/to-double-colon-or-not-do-double-colon/).
    
    r? `@notriddle`
    matthiaskrgr committed Dec 23, 2022
    Configuration menu
    Copy the full SHA
    34b7b9f View commit details
    Browse the repository at this point in the history
  13. Rollup merge of rust-lang#106093 - notriddle:notriddle/docblock-short…

    …-overflow, r=GuillaumeGomez
    
    rustdoc: remove no-op CSS from `.docblock-short`
    
    The rules `overflow:hidden` and `text-overflow:ellipses` only have an effect if overflow occurs, which cannot happen because it will just line wrap instead.
    
    These rules definitely became obsolete by rust-lang#77699, when the stylesheet was decidedly changed to have line wrapping in short docblocks, but given the bug it was fixing, this probably got broken earlier.
    matthiaskrgr committed Dec 23, 2022
    Configuration menu
    Copy the full SHA
    264a54e View commit details
    Browse the repository at this point in the history