Merge branch '4396_contour_terminal'

* 4396_contour_terminal:
  Ticket #4396: (tty_check_term): support Contour terminal.
This commit is contained in:
Andrew Borodin 2022-07-31 19:55:36 +03:00
commit 9f15305dc2

View File

@ -101,6 +101,7 @@ sigintr_handler (int signo)
* foot* * foot*
* screen* * screen*
* tmux* * tmux*
* contour*
*/ */
gboolean gboolean
tty_check_term (gboolean force_xterm) tty_check_term (gboolean force_xterm)
@ -124,7 +125,8 @@ tty_check_term (gboolean force_xterm)
|| strncmp (termvalue, "alacritty", 9) == 0 || strncmp (termvalue, "alacritty", 9) == 0
|| strncmp (termvalue, "foot", 4) == 0 || strncmp (termvalue, "foot", 4) == 0
|| strncmp (termvalue, "screen", 6) == 0 || strncmp (termvalue, "screen", 6) == 0
|| strncmp (termvalue, "tmux", 4) == 0; || strncmp (termvalue, "tmux", 4) == 0
|| strncmp (termvalue, "contour", 7) == 0;
/* *INDENT-ON* */ /* *INDENT-ON* */
} }