Spacing/style nits.

This commit is contained in:
nicm
2022-05-30 12:55:25 +00:00
parent af611815ea
commit 0a8f356c72
12 changed files with 218 additions and 16 deletions

View File

@ -662,9 +662,9 @@ screen_mode_to_string(int mode)
static char tmp[1024];
if (mode == 0)
return "NONE";
return ("NONE");
if (mode == ALL_MODES)
return "ALL";
return ("ALL");
*tmp = '\0';
if (mode & MODE_CURSOR)