From 2518b53e5ae4579bf84ed58fa7a62806f64e861c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Eric=20Janouch?= Date: Wed, 14 Jun 2023 16:23:08 +0200 Subject: Fix usage of a nonstandard escape sequence --- driver-ti.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'driver-ti.c') diff --git a/driver-ti.c b/driver-ti.c index 4caec50..3b7bd44 100644 --- a/driver-ti.c +++ b/driver-ti.c @@ -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); -- cgit v1.2.3