Fix usage of a nonstandard escape sequence

master
Přemysl Eric Janouch 3 months ago
parent 8265f075b1
commit 2518b53e5a
Signed by: p
GPG Key ID: A0420B94F92B9493

@ -246,7 +246,7 @@ load_terminfo (termo_ti_t *ti, const char *term)
set_mouse_string = tigetstr ("XM");
#endif
if (!set_mouse_string || set_mouse_string == (char *) -1)
ti->set_mouse_string = strdup ("\E[?1000%?%p1%{1}%=%th%el%;");
ti->set_mouse_string = strdup ("\x1b[?1000%?%p1%{1}%=%th%el%;");
else
ti->set_mouse_string = strdup (set_mouse_string);

Loading…
Cancel
Save