Skip to content

Commit 65b5c7a

Browse files
committed
stty/flags: Add references to support to IUCLC
This is going to be supported via those PRs, so let's track them to make it easier to support it in future
1 parent 0b7e4b1 commit 65b5c7a

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/uu/stty/src/flags.rs

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,15 @@ pub const INPUT_FLAGS: &[Flag<I>] = &[
8989
Flag::new("ixon", I::IXON),
9090
Flag::new("ixoff", I::IXOFF),
9191
Flag::new("tandem", I::IXOFF).hidden(),
92-
// not supported by nix
92+
// 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+
// ))]
93101
// Flag::new("iuclc", I::IUCLC),
94102
Flag::new("ixany", I::IXANY),
95103
Flag::new("imaxbel", I::IMAXBEL).sane(),

0 commit comments

Comments
 (0)