diff mbox

gtk: fix vte version check

Message ID 20160608214352.32669-1-olaf@aepfle.de
State New
Headers show

Commit Message

Olaf Hering June 8, 2016, 9:43 p.m. UTC
vte_terminal_set_encoding takes 3 args since 0.38.0.
This fixes commit fba958c6 ("gtk: implement set_echo")

Signed-off-by: Olaf Hering <olaf@aepfle.de>
---
 ui/gtk.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Gerd Hoffmann June 10, 2016, 9:13 a.m. UTC | #1
On Mi, 2016-06-08 at 21:43 +0000, Olaf Hering wrote:
> vte_terminal_set_encoding takes 3 args since 0.38.0.
> This fixes commit fba958c6 ("gtk: implement set_echo")

Added to ui patch queue.

thanks,
  Gerd
diff mbox

Patch

diff --git a/ui/gtk.c b/ui/gtk.c
index 01b8216..58d20ee 100644
--- a/ui/gtk.c
+++ b/ui/gtk.c
@@ -1748,7 +1748,7 @@  static GSList *gd_vc_vte_init(GtkDisplayState *s, VirtualConsole *vc,
     /* The documentation says that the default is UTF-8, but actually it is
      * 7-bit ASCII at least in VTE 0.38.
      */
-#if VTE_CHECK_VERSION(0, 40, 0)
+#if VTE_CHECK_VERSION(0, 38, 0)
     vte_terminal_set_encoding(VTE_TERMINAL(vc->vte.terminal), "UTF-8", NULL);
 #else
     vte_terminal_set_encoding(VTE_TERMINAL(vc->vte.terminal), "UTF-8");