mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-21 12:03:31 +03:00
(setup__is_cfg_group_must_panel_config): fix coding style.
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
parent
4b49c82198
commit
a92de91616
@ -447,10 +447,10 @@ static const struct
|
||||
static const char *
|
||||
setup__is_cfg_group_must_panel_config (const char *grp)
|
||||
{
|
||||
return (!strcasecmp ("Dirs", grp) ||
|
||||
!strcasecmp ("Temporal:New Right Panel", grp) ||
|
||||
!strcasecmp ("Temporal:New Left Panel", grp) ||
|
||||
!strcasecmp ("New Left Panel", grp) || !strcasecmp ("New Right Panel", grp))
|
||||
return (strcasecmp ("Dirs", grp) == 0||
|
||||
strcasecmp ("Temporal:New Right Panel", grp) == 0||
|
||||
strcasecmp ("Temporal:New Left Panel", grp) == 0 ||
|
||||
strcasecmp ("New Left Panel", grp) == 0 || strcasecmp ("New Right Panel", grp) == 0)
|
||||
? grp : NULL;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user