Mercurial > vim
diff src/globals.h @ 5927:63e7cc62402d v7.4.305
updated for version 7.4.305
Problem: Making 'ttymouse' empty after the xterm version was requested
causes problems. (Elijah Griffin)
Solution: Do not check for DEC mouse sequences when the xterm version was
requested. Also don't request the xterm version when DEC mouse
was enabled.
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Thu, 22 May 2014 18:14:31 +0200 |
parents | 29eb4c2a33ac |
children | 66eead134d68 |
line wrap: on
line diff
--- a/src/globals.h +++ b/src/globals.h @@ -1333,6 +1333,9 @@ EXTERN HWND clientWindow INIT(= 0); #if defined(UNIX) || defined(VMS) EXTERN int term_is_xterm INIT(= FALSE); /* xterm-like 'term' */ #endif +#if defined(UNIX) +EXTERN int xterm_conflict_mouse INIT(= FALSE); +#endif #ifdef BACKSLASH_IN_FILENAME EXTERN char psepc INIT(= '\\'); /* normal path separator character */