summaryrefslogtreecommitdiffstats
path: root/src/globals.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2014-05-22 18:14:31 +0200
committerBram Moolenaar <Bram@vim.org>2014-05-22 18:14:31 +0200
commit90013c6a751e6574fbe49b529a3dbf1eacbef43d (patch)
tree5d682bca18d37e731684b8496e3286e77e196ec0 /src/globals.h
parentb777618d111e51b55ee452d3881d5ef5bc836765 (diff)
updated for version 7.4.305v7.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.
Diffstat (limited to 'src/globals.h')
-rw-r--r--src/globals.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/globals.h b/src/globals.h
index a17430d065..058341b117 100644
--- 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 */