diff options
| author | Dylan DPC <99973273+Dylan-DPC@users.noreply.github.com> | 2022-04-04 20:41:27 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-04 20:41:27 +0200 |
| commit | c56cbf976c861d28d145549d2aa5736a189a930c (patch) | |
| tree | 80315e5bb92d78350091c0791fdfe7b4c816f890 | |
| parent | d5139f44690e7765df801ca33a7f627d128ac9e2 (diff) | |
| parent | 66e05c2f7cc3425b7f3bd2e8e46ddbbd003e675d (diff) | |
| download | rust-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.rs | 2 |
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; } |
