=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/vis/vis.c,v retrieving revision 1.15 retrieving revision 1.16 diff -c -r1.15 -r1.16 *** src/usr.bin/vis/vis.c 2013/11/27 13:32:02 1.15 --- src/usr.bin/vis/vis.c 2015/02/08 23:40:34 1.16 *************** *** 1,4 **** ! /* $OpenBSD: vis.c,v 1.15 2013/11/27 13:32:02 okan Exp $ */ /* $NetBSD: vis.c,v 1.4 1994/12/20 16:13:03 jtc Exp $ */ /*- --- 1,4 ---- ! /* $OpenBSD: vis.c,v 1.16 2015/02/08 23:40:34 deraadt Exp $ */ /* $NetBSD: vis.c,v 1.4 1994/12/20 16:13:03 jtc Exp $ */ /*- *************** *** 59,65 **** eflags |= VIS_ALL; break; case 'n': ! none++; break; case 'w': eflags |= VIS_WHITE; --- 59,65 ---- eflags |= VIS_ALL; break; case 'n': ! none = 1; break; case 'w': eflags |= VIS_WHITE; *************** *** 86,99 **** } /*FALLTHROUGH*/ case 'f': ! fold++; /* fold output lines to 80 cols */ break; /* using hidden newline */ case 'l': ! markeol++; /* mark end of line with \$ */ break; #ifdef DEBUG case 'd': ! debug++; break; #endif case '?': --- 86,99 ---- } /*FALLTHROUGH*/ case 'f': ! fold = 1; /* fold output lines to 80 cols */ break; /* using hidden newline */ case 'l': ! markeol = 1; /* mark end of line with \$ */ break; #ifdef DEBUG case 'd': ! debug = 1; break; #endif case '?':