Control: found -1 1.20.0-1 This still affects the latest release in sid.
I tweaked the patch so that it applies cleanly (COLORTERM was removed upstream, so no need to patch that out anymore). Cheers.
Description: Stop setting TERM TERM should be set by libvte by default, do not override it. . See also: https://bugzilla.gnome.org/show_bug.cgi?id=740641 . Author: astian <ast...@directbox.de> --- Bug: https://github.com/mate-desktop/mate-terminal/issues/209 Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=800832 Last-Update: 2018-02-15 --- mate-terminal-1.20.0.orig/src/terminal-screen.c +++ mate-terminal-1.20.0/src/terminal-screen.c @@ -1421,8 +1421,6 @@ get_child_environment (TerminalScreen *s g_hash_table_remove (env_table, "LINES"); g_hash_table_remove (env_table, "MATE_DESKTOP_ICON"); - g_hash_table_replace (env_table, g_strdup ("TERM"), g_strdup ("xterm")); /* FIXME configurable later? */ - /* FIXME: moving the tab between windows, or the window between displays will make the next two invalid... */ g_hash_table_replace (env_table, g_strdup ("WINDOWID"), g_strdup_printf ("%ld", GDK_WINDOW_XID (gtk_widget_get_window (window)))); g_hash_table_replace (env_table, g_strdup ("DISPLAY"), g_strdup (gdk_display_get_name (display)));