diff options
| author | Tim J. Robbins <tjr@FreeBSD.org> | 2002-06-04 10:40:14 +0000 |
|---|---|---|
| committer | Tim J. Robbins <tjr@FreeBSD.org> | 2002-06-04 10:40:14 +0000 |
| commit | d1ccc822a5bf7e7d266850a67db8258227e955a5 (patch) | |
| tree | 817e7374cd34b09d6289c5d4fdf33043dfd9e381 /usr.bin | |
| parent | 011b358aba1ec34133fbebec8e8bfcd393af82e5 (diff) | |
Notes
Diffstat (limited to 'usr.bin')
| -rw-r--r-- | usr.bin/sed/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/sed/process.c b/usr.bin/sed/process.c index 7efdeed2025a..4674404d6e01 100644 --- a/usr.bin/sed/process.c +++ b/usr.bin/sed/process.c @@ -480,7 +480,7 @@ lputs(s) } for (count = 0; *s; ++s) { - if (count >= termwidth) { + if (count + 5 >= termwidth) { (void)printf("\\\n"); count = 0; } |
