Fix #143
This commit is contained in:
Kovid Goyal 2017-10-16 16:57:51 +05:30
commit 6f0922d5e3
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -28,7 +28,7 @@ static inline void
init_tabstops(bool *tabstops, index_type count) {
// In terminfo we specify the number of initial tabstops (it) as 8
for (unsigned int t=0; t < count; t++) {
tabstops[t] = (t+1) % 8 == 0 ? true : false;
tabstops[t] = t % 8 == 0 ? true : false;
}
}