Sfoglia il codice sorgente

Reduce the number of redundant checks

master
Arun Prakash Jana 5 anni fa
parent
commit
897f01c2c3
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: A75979F35C080412
1 ha cambiato i file con 7 aggiunte e 7 eliminazioni
  1. +7
    -7
      src/nnn.c

+ 7
- 7
src/nnn.c Vedi File

@@ -4972,6 +4972,13 @@ begin:

while (1) {
redraw(path);

/* Display a one-time message */
if (g_listpath && (g_states & STATE_MSG)) {
g_states &= ~STATE_MSG;
printwait(messages[MSG_IGNORED], &presel);
}

nochange:
/* Exit if parent has exited */
if (getppid() == 1) {
@@ -4989,13 +4996,6 @@ nochange:
return _FAILURE;
}

/* Display a one-time message */
if (g_states & STATE_MSG) {
g_states &= ~STATE_MSG;
printwait(messages[MSG_IGNORED], &presel);
goto nochange;
}

sel = nextsel(presel);
if (presel)
presel = 0;


Loading…
Annulla
Salva