=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mg/match.c,v retrieving revision 1.22 retrieving revision 1.23 diff -u -r1.22 -r1.23 --- src/usr.bin/mg/match.c 2021/03/01 10:51:14 1.22 +++ src/usr.bin/mg/match.c 2023/04/17 09:49:04 1.23 @@ -1,4 +1,4 @@ -/* $OpenBSD: match.c,v 1.22 2021/03/01 10:51:14 lum Exp $ */ +/* $OpenBSD: match.c,v 1.23 2023/04/17 09:49:04 op Exp $ */ /* This file is in the public domain. */ @@ -169,11 +169,7 @@ bufo = 0; for (cp = 0; cp < llength(clp); cp++) { c = lgetc(clp, cp); - if (c != '\t' -#ifdef NOTAB - || (curbp->b_flag & BFNOTAB) -#endif - ) + if (c != '\t') if (ISCTRL(c)) { buf[bufo++] = '^'; buf[bufo++] = CCHR(c);