]> Sergey Matveev's repositories - nnn.git/commitdiff
Fix commenting style (if applicable)
authorArun Prakash Jana <engineerarun@gmail.com>
Fri, 12 Jul 2019 15:43:49 +0000 (21:13 +0530)
committerArun Prakash Jana <engineerarun@gmail.com>
Fri, 12 Jul 2019 16:28:21 +0000 (21:58 +0530)
src/nnn.c

index b4ccbf09809da76bf1ccce81c5b93d4b231b0c5a..d5262a5ffddfabccffd741d49b3179c3aea45eb8 100644 (file)
--- 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();