diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-10-17 23:00:07 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-10-17 23:00:07 +0200 |
commit | a1cb1d1dce14dd005797590721f1bcd0e7c3b35f (patch) | |
tree | be364e198e623b25d59e58d205e598fd954d3f17 /src/option.c | |
parent | 0d2c4bf1714a6b286bd7a10061044414e0b17a15 (diff) | |
download | vim-git-a1cb1d1dce14dd005797590721f1bcd0e7c3b35f.tar.gz |
patch 8.1.2171: mouse support not always availablev8.1.2171
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).
Diffstat (limited to 'src/option.c')
-rw-r--r-- | src/option.c | 4 |
1 files changed, 1 insertions, 3 deletions
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 |