lib/tty/tty.c: fix indentation.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Andrew Borodin 2021-08-02 09:41:42 +03:00
parent 34126e8f49
commit cbc214da82

View File

@ -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* */
}
/* --------------------------------------------------------------------------------------------- */