Sfoglia il codice sorgente

Consistent comments capitalization

master
lostd 11 anni fa
parent
commit
e948949624
1 ha cambiato i file con 5 aggiunte e 5 eliminazioni
  1. +5
    -5
      noice.c

+ 5
- 5
noice.c Vedi File

@@ -200,29 +200,29 @@ nextsel(int *cur, int max)
switch (c) { switch (c) {
case 'q': case 'q':
return SEL_QUIT; return SEL_QUIT;
/* back */
/* Back */
case KEY_BACKSPACE: case KEY_BACKSPACE:
case KEY_LEFT: case KEY_LEFT:
case 'h': case 'h':
return SEL_BACK; return SEL_BACK;
/* inside */
/* Inside */
case KEY_ENTER: case KEY_ENTER:
case '\r': case '\r':
case KEY_RIGHT: case KEY_RIGHT:
case 'l': case 'l':
return SEL_GOIN; return SEL_GOIN;
/* filter */
/* Filter */
case '/': case '/':
case '&': case '&':
return SEL_FLTR; return SEL_FLTR;
/* next */
/* Next */
case 'j': case 'j':
case KEY_DOWN: case KEY_DOWN:
case CONTROL('N'): case CONTROL('N'):
if (*cur < max - 1) if (*cur < max - 1)
(*cur)++; (*cur)++;
break; break;
/* prev */
/* Previous */
case 'k': case 'k':
case KEY_UP: case KEY_UP:
case CONTROL('P'): case CONTROL('P'):


Loading…
Annulla
Salva