From b2f38ad669e99a650850a36576a4d54c57bf9ac0 Mon Sep 17 00:00:00 2001 From: Kamil Dudka Date: Tue, 2 Jan 2023 11:48:22 +0100 Subject: [PATCH] Resolves: #128105 - use "Linux" xterm terminal driver instead of "VT100" 0005-elinks-0.15.0-xterm.patch rebased on 0.17.0 --- src/config/options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/options.c b/src/config/options.c index a43fbe0..a363b36 100644 --- a/src/config/options.c +++ b/src/config/options.c @@ -770,7 +770,7 @@ register_autocreated_options(void) get_opt_bool("terminal.linux.m11_hack", NULL) = 1; get_opt_int("terminal.vt100.type", NULL) = TERM_VT100; get_opt_int("terminal.vt110.type", NULL) = TERM_VT100; - get_opt_int("terminal.xterm.type", NULL) = TERM_VT100; + get_opt_int("terminal.xterm.type", NULL) = TERM_LINUX; get_opt_bool("terminal.xterm.underline", NULL) = 1; get_opt_bool("terminal.xterm.strike", NULL) = 1; get_opt_int("terminal.xterm-color.type", NULL) = TERM_VT100; -- 2.34.1