]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.864 v7.3.864
authorBram Moolenaar <Bram@vim.org>
Sat, 16 Mar 2013 20:35:33 +0000 (21:35 +0100)
committerBram Moolenaar <Bram@vim.org>
Sat, 16 Mar 2013 20:35:33 +0000 (21:35 +0100)
Problem:    Can't build without the mouse feature.
Solution:   Add an #ifdef. (Ike Devolder)

src/misc1.c
src/version.c

index 94c2b4176bbf9a71d038cb6d1d376e9b98c1d147..c1cc89cb692fcbdd6f7296eabf72681d32fd4af3 100644 (file)
@@ -3405,7 +3405,9 @@ get_keystroke()
            n = TO_SPECIAL(buf[1], buf[2]);
            if (buf[1] == KS_MODIFIER
                    || n == K_IGNORE
+#ifdef FEAT_MOUSE
                    || (is_mouse_key(n) && n != K_LEFTMOUSE)
+#endif
 #ifdef FEAT_GUI
                    || n == K_VER_SCROLLBAR
                    || n == K_HOR_SCROLLBAR
index 0f1f904152c94023721cc2d524e760294831f4c4..7c5f362b790e140a5c05a6462c3afa07314053d0 100644 (file)
@@ -728,6 +728,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    864,
 /**/
     863,
 /**/