mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-03 18:14:25 +03:00
lib/tty/tty.c: fix indentation.
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
parent
34126e8f49
commit
cbc214da82
@ -114,7 +114,9 @@ tty_check_term (gboolean force_xterm)
|
||||
exit (EXIT_FAILURE);
|
||||
}
|
||||
|
||||
return force_xterm || strncmp (termvalue, "xterm", 5) == 0
|
||||
/* *INDENT-OFF* */
|
||||
return force_xterm
|
||||
|| strncmp (termvalue, "xterm", 5) == 0
|
||||
|| strncmp (termvalue, "konsole", 7) == 0
|
||||
|| strncmp (termvalue, "rxvt", 4) == 0
|
||||
|| strcmp (termvalue, "Eterm") == 0
|
||||
@ -123,6 +125,7 @@ tty_check_term (gboolean force_xterm)
|
||||
|| strncmp (termvalue, "foot", 4) == 0
|
||||
|| strncmp (termvalue, "screen", 6) == 0
|
||||
|| strncmp (termvalue, "tmux", 4) == 0;
|
||||
/* *INDENT-ON* */
|
||||
}
|
||||
|
||||
/* --------------------------------------------------------------------------------------------- */
|
||||
|
Loading…
Reference in New Issue
Block a user