diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2017-12-27 00:16:23 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2017-12-27 00:16:56 +0530 |
commit | f1f2a53dbf22c1c999779a65935dab3410e2f770 (patch) | |
tree | 6710d69bf26174d8fb7c9453b01f41f5d8ed2f02 /nnn.c | |
parent | 4dca8d7cf95a03ef82e4c25a87a8b609b57e7fc9 (diff) | |
download | nnn-f1f2a53dbf22c1c999779a65935dab3410e2f770.tar.gz |
TAB is not identified on OS X
Diffstat (limited to 'nnn.c')
-rw-r--r-- | nnn.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) { |