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: [email protected] 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'); } _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "[email protected]"
