mirror of
https://github.com/uutils/coreutils
synced 2024-12-15 07:42:48 +00:00
Merge pull request #406 from Arcterus/fold-fix
Pass the Busybox's Unicode test for fold
This commit is contained in:
commit
f96764fc2d
1 changed files with 5 additions and 13 deletions
|
@ -140,19 +140,11 @@ fn fold_file<T: io::Reader>(file: BufferedReader<T>, bytes: bool, spaces: bool,
|
|||
}
|
||||
} else {
|
||||
let mut len = line.char_len();
|
||||
let newline =
|
||||
if len == 0 {
|
||||
continue;
|
||||
} else if len == 1 && line.char_at(len - 1) == '\n' {
|
||||
println!("");
|
||||
continue;
|
||||
} else if line.char_at(len - 1) == '\n' {
|
||||
let newline = line.ends_with("\n");
|
||||
if newline {
|
||||
line = line.slice_to(line.len() - 1);
|
||||
len -= 1;
|
||||
true
|
||||
} else {
|
||||
false
|
||||
};
|
||||
}
|
||||
let mut output = String::new();
|
||||
let mut count = 0;
|
||||
for (i, ch) in line.chars().enumerate() {
|
||||
|
|
Loading…
Reference in a new issue