We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b7e4b1 commit 65b5c7aCopy full SHA for 65b5c7a
src/uu/stty/src/flags.rs
@@ -89,7 +89,15 @@ pub const INPUT_FLAGS: &[Flag<I>] = &[
89
Flag::new("ixon", I::IXON),
90
Flag::new("ixoff", I::IXOFF),
91
Flag::new("tandem", I::IXOFF).hidden(),
92
- // not supported by nix
+ // not supported by nix and libc:
93
+ // - https://github.com/rust-lang/libc/pull/4846
94
+ // - https://github.com/nix-rust/nix/pull/2702
95
+ // #[cfg(any(
96
+ // target_os = "aix",
97
+ // target_os = "android",
98
+ // target_os = "haiku",
99
+ // target_os = "linux",
100
+ // ))]
101
// Flag::new("iuclc", I::IUCLC),
102
Flag::new("ixany", I::IXANY),
103
Flag::new("imaxbel", I::IMAXBEL).sane(),
0 commit comments