case NANO_HELP_KEY:
case NANO_HELP_FKEY:
case '?': /* Pico compatibility */
- do_help();
- break;
+ do_help();
+ break;
case NANO_ENTER_KEY:
case 'S': /* Pico compatibility */
case 's':
* any more. */
int kbinput = ERR, meta_key;
- int no_help_flag = ISSET(NO_HELP);
+ int old_no_help = ISSET(NO_HELP);
int old_cursor = curs_set(0);
#ifndef DISABLE_MOUSE
const shortcut *oldshortcut = currshortcut;
currshortcut = oldshortcut;
#endif
- if (no_help_flag) {
+ if (old_no_help) {
blank_bottombars();
wrefresh(bottomwin);
SET(NO_HELP);