Fix commenting style (if applicable)

This commit is contained in:
Arun Prakash Jana 2019-07-12 21:13:49 +05:30
parent 051a8b27c2
commit 713eed0a21
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 5 additions and 5 deletions

View File

@ -1207,7 +1207,7 @@ static bool batch_rename(const char *path)
spawn(editor, g_tmpfpath, NULL, path, F_CLI); 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) if ((fd2 = open(g_tmpfpath, O_RDONLY)) == -1)
goto finish; goto finish;
@ -1711,7 +1711,7 @@ static int filterentries(char *path)
} }
switch (*ch) { switch (*ch) {
case '\r': // with nonl(), this is ENTER key value case '\r': /* with nonl(), this is ENTER key value */
if (len == 1) { if (len == 1) {
cur = oldcur; cur = oldcur;
goto end; goto end;
@ -1722,7 +1722,7 @@ static int filterentries(char *path)
redraw(path); redraw(path);
goto end; goto end;
case '?': // '?' is an invalid regex, show help instead case '?': /* '?' is an invalid regex, show help instead */
if (len == 1) { if (len == 1) {
cur = oldcur; cur = oldcur;
goto end; goto end;
@ -2540,9 +2540,9 @@ static bool handle_archive(char *fpath, const char *dir, char op)
else else
return FALSE; return FALSE;
if (op == 'x') { // extract if (op == 'x') { /* extract */
spawn(util, xarg, fpath, dir, F_NORMAL); spawn(util, xarg, fpath, dir, F_NORMAL);
} else { // list } else { /* list */
exitcurses(); exitcurses();
get_output(NULL, 0, util, larg, fpath, TRUE); get_output(NULL, 0, util, larg, fpath, TRUE);
refresh(); refresh();