]> git.lizzy.rs Git - rust.git/commitdiff
fix tidy ~ again
authorEsteban Küber <esteban@commure.com>
Sun, 22 Jul 2018 01:24:10 +0000 (18:24 -0700)
committerEsteban Küber <esteban@commure.com>
Sun, 22 Jul 2018 02:19:56 +0000 (19:19 -0700)
src/libstd/macros.rs

index 6309ca069fec1ba36d1aba99782fe0fbf9254b0c..76f38646308d8f24931377b2078bdd645e8d8329 100644 (file)
@@ -413,19 +413,6 @@ macro_rules! format_args {
         ($fmt:expr, $($args:tt)*) => ({ /* compiler built-in */ });
     }
 
-    /// Internal version of [`format_args`].
-    ///
-    /// This macro differs from [`format_args`] in that it appends a newline to the format string
-    /// and nothing more. It is perma-unstable.
-    ///
-    /// [`format_args`]: ../std/macro.format_args.html
-    #[doc(hidden)]
-    #[unstable(feature = "format_args_nl", issue="0")]
-    #[macro_export]
-    macro_rules! format_args_nl {
-        ($fmt:expr) => ({ /* compiler built-in */ });
-        ($fmt:expr, $($args:tt)*) => ({ /* compiler built-in */ });
-    }
     /// Inspect an environment variable at compile time.
     ///
     /// This macro will expand to the value of the named environment variable at