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