about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDylan DPC <99973273+Dylan-DPC@users.noreply.github.com>2022-04-04 20:41:27 +0200
committerGitHub <noreply@github.com>2022-04-04 20:41:27 +0200
commitc56cbf976c861d28d145549d2aa5736a189a930c (patch)
tree80315e5bb92d78350091c0791fdfe7b4c816f890
parentd5139f44690e7765df801ca33a7f627d128ac9e2 (diff)
parent66e05c2f7cc3425b7f3bd2e8e46ddbbd003e675d (diff)
downloadrust-c56cbf976c861d28d145549d2aa5736a189a930c.tar.gz
rust-c56cbf976c861d28d145549d2aa5736a189a930c.zip
Rollup merge of #92942 - Xaeroxe:raw_arg, r=dtolnay
stabilize windows_process_extensions_raw_arg

Stabilizes the feature tracked at https://github.com/rust-lang/rust/issues/92939
-rw-r--r--library/std/src/os/windows/process.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/os/windows/process.rs b/library/std/src/os/windows/process.rs
index 9510d104806..e1896309914 100644
--- a/library/std/src/os/windows/process.rs
+++ b/library/std/src/os/windows/process.rs
@@ -159,7 +159,7 @@ pub trait CommandExt: Sealed {
     ///
     /// This is useful for passing arguments to `cmd.exe /c`, which doesn't follow
     /// `CommandLineToArgvW` escaping rules.
-    #[unstable(feature = "windows_process_extensions_raw_arg", issue = "29494")]
+    #[stable(feature = "windows_process_extensions_raw_arg", since = "1.62.0")]
     fn raw_arg<S: AsRef<OsStr>>(&mut self, text_to_append_as_is: S) -> &mut process::Command;
 }