Skip to content

Commit fdfbcf8

Browse files
committed
Auto merge of #46482 - frewsxcv:rollup, r=frewsxcv
Rollup of 8 pull requests - Successful merges: #45957, #46260, #46432, #46442, #46454, #46462, #46465, #46473 - Failed merges:
2 parents 1956d55 + 48d3855 commit fdfbcf8

File tree

12 files changed

+160
-120
lines changed

12 files changed

+160
-120
lines changed

src/doc/unstable-book/src/language-features/plugin.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ quasiquote as an ordinary plugin library.
177177
Plugins can extend [Rust's lint
178178
infrastructure](../reference/attributes.html#lint-check-attributes) with
179179
additional checks for code style, safety, etc. Now let's write a plugin
180-
[`lint_plugin_test.rs`](https://github.com/rust-lang/rust/blob/master/src/test/run-pass-fulldeps/auxiliary/lint_plugin_test.rs)
180+
[`lint_plugin_test.rs`](https://github.com/rust-lang/rust/blob/master/src/test/ui-fulldeps/auxiliary/lint_plugin_test.rs)
181181
that warns about any item named `lintme`.
182182

183183
```rust,ignore

src/etc/test-float-parse/runtests.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python2.7
1+
#!/usr/bin/env python2.7
22
#
33
# Copyright 2015 The Rust Project Developers. See the COPYRIGHT
44
# file at the top-level directory of this distribution and at

src/libcore/macros.rs

+14-6
Original file line numberDiff line numberDiff line change
@@ -612,9 +612,10 @@ mod builtin {
612612
#[stable(feature = "rust1", since = "1.0.0")]
613613
#[macro_export]
614614
#[cfg(dox)]
615-
macro_rules! format_args { ($fmt:expr, $($args:tt)*) => ({
616-
/* compiler built-in */
617-
}) }
615+
macro_rules! format_args {
616+
($fmt:expr) => ({ /* compiler built-in */ });
617+
($fmt:expr, $($args:tt)*) => ({ /* compiler built-in */ });
618+
}
618619

619620
/// Inspect an environment variable at compile time.
620621
///
@@ -624,7 +625,10 @@ mod builtin {
624625
#[stable(feature = "rust1", since = "1.0.0")]
625626
#[macro_export]
626627
#[cfg(dox)]
627-
macro_rules! env { ($name:expr) => ({ /* compiler built-in */ }) }
628+
macro_rules! env {
629+
($name:expr) => ({ /* compiler built-in */ });
630+
($name:expr,) => ({ /* compiler built-in */ });
631+
}
628632

629633
/// Optionally inspect an environment variable at compile time.
630634
///
@@ -645,7 +649,8 @@ mod builtin {
645649
#[macro_export]
646650
#[cfg(dox)]
647651
macro_rules! concat_idents {
648-
($($e:ident),*) => ({ /* compiler built-in */ })
652+
($($e:ident),*) => ({ /* compiler built-in */ });
653+
($($e:ident,)*) => ({ /* compiler built-in */ });
649654
}
650655

651656
/// Concatenates literals into a static string slice.
@@ -656,7 +661,10 @@ mod builtin {
656661
#[stable(feature = "rust1", since = "1.0.0")]
657662
#[macro_export]
658663
#[cfg(dox)]
659-
macro_rules! concat { ($($e:expr),*) => ({ /* compiler built-in */ }) }
664+
macro_rules! concat {
665+
($($e:expr),*) => ({ /* compiler built-in */ });
666+
($($e:expr,)*) => ({ /* compiler built-in */ });
667+
}
660668

661669
/// A macro which expands to the line number on which it was invoked.
662670
///

0 commit comments

Comments
 (0)