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

Rolling up PRs in the queue #14164

Merged
merged 19 commits into from
May 13, 2014
Merged

Rolling up PRs in the queue #14164

merged 19 commits into from
May 13, 2014

Conversation

alexcrichton
Copy link
Member

No description provided.

alxgnon and others added 18 commits May 12, 2014 19:52
This bug was introduced when rustdoc gained the ability to hyperlink across
crates in pub use statements.

Closes rust-lang#14125
…king

core::slice::raw::{shift_ptr,pop_ptr} now returns Option<*T> rather than
*T. They no longer fail on empty slices.

[breaking-change]
Keyword for continue expressions was changed from loop to continue, but the
manual was not updated.
After allowing mixing rlibs and dylibs in rust-lang#13892, the documentation was not
updated accordingly to reflect this new capability.
The `FileStat` struct contained a `path` field, which was filled by the
`stat` and `lstat` function. Since this field isn't in fact returned by
the operating system (it was copied from the paths passed to the
functions) it was removed, as in the `fstat` case we aren't working with
a `Path`, but directly with a fd.

If your code used the `path` field of `FileStat` you will now have to
manually store the path passed to `stat` along with the returned struct.

[breaking-change]
- factorize operation
- factorize loop (and gain a level of indentation)
- ~5% faster

Thanks to @Ryman for the propositions :)
Closes rust-lang#14163 (Fix typos in rustc manpage)
Closes rust-lang#14161 (Add the patch number to version strings. Closes rust-lang#13289)
Closes rust-lang#14156 (rustdoc: Fix hiding implementations of traits)
Closes rust-lang#14152 (add shebang to scripts that have execute bit set)
Closes rust-lang#14150 (libcore: remove fails from slice.rs and remove duplicated length checking)
Closes rust-lang#14147 (Make ProcessOutput Eq, TotalEq, Clone)
Closes rust-lang#14142 (doc: updates rust manual (loop to continue))
Closes rust-lang#14141 (doc: Update the linkage documentation)
Closes rust-lang#14139 (Remove an unnecessary .move_iter().collect())
Closes rust-lang#14136 (Two minor fixes in parser.rs)
Closes rust-lang#14130 (Fixed typo in comments of driver.rs)
Closes rust-lang#14128 (Add `stat` method to `std::io::fs::File` to stat without a Path.)
Closes rust-lang#14114 (rustdoc: List macros in the sidebar)
Closes rust-lang#14113 (shootout-nbody improvement)
Closes rust-lang#14112 (Improved example code in Option)
Closes rust-lang#14104 (Remove reference to MutexArc)
Closes rust-lang#14087 (emacs: highlight `macro_name!` in macro invocations using [] delimiters)
@bors bors closed this May 13, 2014
@bors bors merged commit 5001a66 into rust-lang:master May 13, 2014
@alexcrichton alexcrichton deleted the rollup branch May 13, 2014 06:08
bors added a commit to rust-lang-ci/rust that referenced this pull request Mar 20, 2023
internal: Bump chalk

This release fixes a problem around GATs (rust-lang/chalk#790). While a regression test is added in chalk's own test suite, I also added one in ours so that we can catch regressions when we move away from chalk.

Fixes rust-lang#14164
flip1995 pushed a commit to flip1995/rust that referenced this pull request Feb 20, 2025
…n Rust editions (rust-lang#14180)

The first commit fixes rust-lang#14164 by making sure that temporaries with
non-static references are also looked for in expressions coming from
expansion. The shortcut that was done skipped those parts and reported
an absence of short-lived temporaries, which was incorrect.

The second commit distinguishes between edition 2024 and earlier ones.
Starting from edition 2024, the problematic drop order has been fixed,
and block variables, which might be referenced in a block expression,
are freed after the block expression itself. This allows more
`let_and_return` cases to be reported starting with edition 2024,
whereas in earlier editions an intermediary variable was necessary to
reorder the drops.

Incidentally, since Clippy is compiled in edition 2024 mode, the second
commit has led to a fix in
`clippy_lints/src/matches/significant_drop_in_scrutinee.rs`.

changelog: [`let_and_return`]: lint more cases in edition 2024, and fix
a false positive involving short-lived block temporary variables in
earlier editions.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.