From a1cb1d1dce14dd005797590721f1bcd0e7c3b35f Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 17 Oct 2019 23:00:07 +0200 Subject: patch 8.1.2171: mouse support not always available Problem: Mouse support not always available. Solution: Enable mouse support also in tiny version. Do not define FEAT_MOUSE_XTERM on MS-Windows (didn't really work). --- src/option.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/option.c') diff --git a/src/option.c b/src/option.c index 898068b41..d27c73c3b 100644 --- a/src/option.c +++ b/src/option.c @@ -4976,9 +4976,7 @@ clear_termoptions(void) * outputting a few things that the terminal doesn't understand, but the * screen will be cleared later, so this is OK. */ -#ifdef FEAT_MOUSE_TTY - mch_setmouse(FALSE); /* switch mouse off */ -#endif + mch_setmouse(FALSE); // switch mouse off #ifdef FEAT_TITLE mch_restore_title(SAVE_RESTORE_BOTH); /* restore window titles */ #endif -- cgit v1.2.1