tweaks: normalize the indentation after the previous change

This commit is contained in:
Benno Schulenberg 2022-08-19 12:07:46 +02:00
parent 67750a30ba
commit 801622ce19

View File

@ -333,10 +333,8 @@ int do_statusbar_input(void)
else if (ISSET(RESTRICTED) && currmenu == MWRITEFILE &&
openfile->filename[0] != '\0' &&
(function == do_verbatim_input ||
function == do_delete ||
function == do_backspace ||
function == cut_text ||
function == paste_text))
function == do_delete || function == do_backspace ||
function == cut_text || function == paste_text))
;
#ifdef ENABLE_NANORC
else if (function == (functionptrtype)implant)
@ -359,7 +357,8 @@ int do_statusbar_input(void)
} else
return input;
#endif
/* Don't handle the handled functions again. */
/* Don't handle any handled function again. */
return ERR;
}