From 0304b9824530ebe138d7ed40804ed2ad8d763425 Mon Sep 17 00:00:00 2001 From: matthieu Date: Thu, 2 Jan 2014 15:15:51 +0000 Subject: [PATCH] Don't play with libxcursor if XCURSOR_THEM is defined. --- app/xterm/misc.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/xterm/misc.c b/app/xterm/misc.c index baea82211..33c2dec0b 100644 --- a/app/xterm/misc.c +++ b/app/xterm/misc.c @@ -709,6 +709,9 @@ init_colored_cursor(void) size_t needed; FILE *fp; + if (getenv("XCURSOR_THEME") != NULL) + return; + xterm_cursor_theme = 0; if ((tmp_dir = getenv("TMPDIR")) == 0) tmp_dir = P_tmpdir;