From: Arun Prakash Jana Date: Fri, 12 Jul 2019 15:43:49 +0000 (+0530) Subject: Fix commenting style (if applicable) X-Git-Tag: v2.6~44 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=713eed0a21b378e18e4073210b0bb0efc2c18c6c;p=nnn.git Fix commenting style (if applicable) --- diff --git a/src/nnn.c b/src/nnn.c index b4ccbf09..d5262a5f 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -1207,7 +1207,7 @@ static bool batch_rename(const char *path) spawn(editor, g_tmpfpath, NULL, path, F_CLI); - // Reopen file descriptor to get updated contents: + /* Reopen file descriptor to get updated contents */ if ((fd2 = open(g_tmpfpath, O_RDONLY)) == -1) goto finish; @@ -1711,7 +1711,7 @@ static int filterentries(char *path) } switch (*ch) { - case '\r': // with nonl(), this is ENTER key value + case '\r': /* with nonl(), this is ENTER key value */ if (len == 1) { cur = oldcur; goto end; @@ -1722,7 +1722,7 @@ static int filterentries(char *path) redraw(path); goto end; - case '?': // '?' is an invalid regex, show help instead + case '?': /* '?' is an invalid regex, show help instead */ if (len == 1) { cur = oldcur; goto end; @@ -2540,9 +2540,9 @@ static bool handle_archive(char *fpath, const char *dir, char op) else return FALSE; - if (op == 'x') { // extract + if (op == 'x') { /* extract */ spawn(util, xarg, fpath, dir, F_NORMAL); - } else { // list + } else { /* list */ exitcurses(); get_output(NULL, 0, util, larg, fpath, TRUE); refresh();