1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2026-01-16 18:21:01 +00:00

tr: fix complement if set2 is range

This commit is contained in:
Jan Scheer 2021-05-02 12:15:16 +02:00
parent 83eb704415
commit 34c22dc3ad
2 changed files with 21 additions and 1 deletions

View file

@ -149,7 +149,7 @@ impl TranslateOperation {
TranslateOperation {
translate_map: map,
complement,
s2_last: s2_prev,
s2_last: set2.last().unwrap_or(s2_prev),
}
}
}