Removed (broken) code to escape newlines in output. If you care about

files with newlines, just use '-0'. Otherwise, newlines will just be
printed like every other character.
This commit is contained in:
Bruce Hill 2019-10-13 21:48:43 -07:00
parent 6a22cda2e9
commit dc6ecc4e7f

10
bb.c
View File

@ -1296,15 +1296,7 @@ int main(int argc, char *argv[])
if (bb->firstselected && print_selection) {
for (entry_t *e = bb->firstselected; e; e = e->selected.next) {
const char *p = e->fullname;
while (*p) {
const char *p2 = strchr(p, '\n');
if (!p2) p2 = p + strlen(p);
write(STDOUT_FILENO, p, (size_t)(p2 - p));
if (*p2 == '\n' && sep == '\n')
write(STDOUT_FILENO, "\\", 1);
p = p2;
}
write(STDOUT_FILENO, e->fullname, strlen(e->fullname));
write(STDOUT_FILENO, &sep, 1);
}
fflush(stdout);