From ef3eab073ece3bcc9c2473d4a660c0efa030b5df Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Thu, 14 Dec 2017 19:12:14 +0530 Subject: [PATCH] Fix indentation --- nnn.c | 29 ++++++++++++++--------------- 1 file changed, 14 insertions(+), 15 deletions(-) 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) {