From: Arun Prakash Jana Date: Tue, 26 Dec 2017 18:46:23 +0000 (+0530) Subject: TAB is not identified on OS X X-Git-Tag: v1.7~61 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=f1f2a53dbf22c1c999779a65935dab3410e2f770;p=nnn.git TAB is not identified on OS X --- diff --git a/nnn.c b/nnn.c index d874d35a..f173fca6 100644 --- a/nnn.c +++ b/nnn.c @@ -1055,7 +1055,7 @@ xreadline(char *fname) } /* TAB breaks cursor position, ignore it */ - if (*ch == TAB || *ch == '\t') + if (*ch == '\t') continue; if (pos < buflen) {