1
Fork 0
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:
Terts Diepraam 2022-06-27 13:04:56 +02:00 committed by Sylvestre Ledru
parent 6896a85b41
commit 0c44fc07d2

View file

@ -41,9 +41,9 @@ pub const INPUT_FLAGS: [Flag<I>; 15] = [
Flag::new("ixon", I::IXON), Flag::new("ixon", I::IXON),
// not supported by nix // not supported by nix
// Flag::new("iuclc", I::IUCLC), // Flag::new("iuclc", I::IUCLC),
Flag::new("ixany", I::IXANY).sane(), Flag::new("ixany", I::IXANY),
Flag::new("imaxbel", I::IMAXBEL).sane(), Flag::new("imaxbel", I::IMAXBEL).sane(),
Flag::new("iutf8", I::IUTF8).sane(), Flag::new("iutf8", I::IUTF8),
]; ];
pub const OUTPUT_FLAGS: [Flag<O>; 24] = [ pub const OUTPUT_FLAGS: [Flag<O>; 24] = [