From: Arun Prakash Jana Date: Thu, 14 Dec 2017 13:42:14 +0000 (+0530) Subject: Fix indentation X-Git-Tag: v1.6~34 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=ef3eab073ece3bcc9c2473d4a660c0efa030b5df;p=nnn.git Fix indentation --- diff --git a/nnn.c b/nnn.c index e7ab8ec4..2319d7ca 100644 --- a/nnn.c +++ b/nnn.c @@ -452,7 +452,6 @@ xdirname(const char *path) static char *buf = g_buf; static char *last_slash, *runp; - xstrlcpy(buf, path, PATH_MAX); /* Find last '/'. */ @@ -949,23 +948,23 @@ filterentries(char *path) while ((r = get_wch(ch)) != ERR) { if (*ch == 127 /* handle DEL */ || *ch == KEY_DC || *ch == KEY_BACKSPACE) { - if (len == 1) { - cur = oldcur; - *ch = CONTROL('L'); - goto end; - } + if (len == 1) { + cur = oldcur; + *ch = CONTROL('L'); + goto end; + } - wln[--len] = '\0'; - if (len == 1) - cur = oldcur; + wln[--len] = '\0'; + if (len == 1) + cur = oldcur; - wcstombs(ln, wln, REGEX_MAX); - ndents = total; - if (matches(pln) == -1) - continue; - redraw(path); - printprompt(ln); + wcstombs(ln, wln, REGEX_MAX); + ndents = total; + if (matches(pln) == -1) continue; + redraw(path); + printprompt(ln); + continue; } if (r == OK) {