Browse Source

Add comments

master
Arun Prakash Jana 6 years ago
parent
commit
cf0ea993df
No known key found for this signature in database GPG Key ID: A75979F35C080412
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      src/nnn.c

+ 2
- 0
src/nnn.c View File

@@ -1884,9 +1884,11 @@ static char *unescape(const char *str, uint maxcols)


if (maxcols) { if (maxcols) {
len = lencount = wcswidth(wbuf, len); len = lencount = wcswidth(wbuf, len);
/* Reduce nuber of wide chars to max columns */
if (len > maxcols) if (len > maxcols)
lencount = maxcols + 1; lencount = maxcols + 1;


/* Reduce wide chars one by one till it fits */
while (len > maxcols) while (len > maxcols)
len = wcswidth(wbuf, --lencount); len = wcswidth(wbuf, --lencount);




Loading…
Cancel
Save