diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-12-06 22:53:06 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-12-06 22:53:06 +0000 |
commit | 8ffabf5825e68f25c08ee6d804cf8e77035ef27d (patch) | |
tree | becf91e1b6467562965461eab3a5d9363168a2ba /coreutils | |
parent | 1d3523b7aa994aeb90fec5f281617abc3c9ce195 (diff) | |
download | busybox-8ffabf5825e68f25c08ee6d804cf8e77035ef27d.tar.gz |
Patch from Matt Kraai to fix 'echo "1 2 3" | tr -s " "'
so it properly outputs "1 2 3".
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/tr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/tr.c b/coreutils/tr.c index 54b6abc8c..96e2c2b5f 100644 --- a/coreutils/tr.c +++ b/coreutils/tr.c @@ -70,7 +70,7 @@ static void convert() coded = vector[c]; if (del_fl && invec[c]) continue; - if (sq_fl && last == coded && outvec[coded]) + if (sq_fl && last == coded && (invec[c] || outvec[coded])) continue; output[out_index++] = last = coded; if (out_index == BUFSIZ) { |