Skip to content

Commit 48ead9a

Browse files
committed
stty/flags: Use same order of GNU in printing ixoff/ixon
Now the order is respected
1 parent 8597b14 commit 48ead9a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/uu/stty/src/flags.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ pub const INPUT_FLAGS: &[Flag<I>] = &[
8181
Flag::new("inlcr", I::INLCR),
8282
Flag::new("igncr", I::IGNCR),
8383
Flag::new("icrnl", I::ICRNL).sane(),
84-
Flag::new("ixoff", I::IXOFF),
8584
Flag::new("ixon", I::IXON),
85+
Flag::new("ixoff", I::IXOFF),
8686
Flag::new("tandem", I::IXOFF).hidden(),
8787
// not supported by nix
8888
// Flag::new("iuclc", I::IUCLC),

0 commit comments

Comments
 (0)