Consistent comments capitalization

This commit is contained in:
lostd 2014-10-10 14:59:30 +03:00
parent bfd5f9b1d4
commit e948949624
1 changed files with 5 additions and 5 deletions

10
noice.c
View File

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