mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-09-16 11:46:17 +00:00
stty: fix ixany and iutf8 not sane
This commit is contained in:
parent
6896a85b41
commit
0c44fc07d2
1 changed files with 2 additions and 2 deletions
|
@ -41,9 +41,9 @@ pub const INPUT_FLAGS: [Flag<I>; 15] = [
|
|||
Flag::new("ixon", I::IXON),
|
||||
// not supported by nix
|
||||
// Flag::new("iuclc", I::IUCLC),
|
||||
Flag::new("ixany", I::IXANY).sane(),
|
||||
Flag::new("ixany", I::IXANY),
|
||||
Flag::new("imaxbel", I::IMAXBEL).sane(),
|
||||
Flag::new("iutf8", I::IUTF8).sane(),
|
||||
Flag::new("iutf8", I::IUTF8),
|
||||
];
|
||||
|
||||
pub const OUTPUT_FLAGS: [Flag<O>; 24] = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue