svn commit: r273242 - head/usr.bin/col
John-Mark Gurney
jmg at FreeBSD.org
Fri Oct 17 21:09:04 UTC 2014
Author: jmg
Date: Fri Oct 17 21:09:03 2014
New Revision: 273242
URL: https://svnweb.freebsd.org/changeset/base/273242
Log:
Fix to col when printing half-line feeds w/ -f option...
Message-Id on openbsd-tech: 20141017195810.GJ132 at iris.usta.de
Submitted by: Ingo Schwarze
Obtained from: OpenBSD
MFC after: 3 days
Modified:
head/usr.bin/col/col.c
Modified: head/usr.bin/col/col.c
==============================================================================
--- head/usr.bin/col/col.c Fri Oct 17 20:47:55 2014 (r273241)
+++ head/usr.bin/col/col.c Fri Oct 17 21:09:03 2014 (r273242)
@@ -378,7 +378,7 @@ flush_blanks(void)
PUTC('\n');
if (half) {
PUTC('\033');
- PUTC('9');
+ PUTC('\011');
if (!nb)
PUTC('\r');
}
More information about the svn-src-all
mailing list