From a5be25e1dbb6d129cb7d1efb5c73141a51836e06 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 16 Mar 2013 21:35:33 +0100 Subject: updated for version 7.3.864 Problem: Can't build without the mouse feature. Solution: Add an #ifdef. (Ike Devolder) --- src/misc1.c | 2 ++ src/version.c | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/misc1.c b/src/misc1.c index 94c2b4176b..c1cc89cb69 100644 --- a/src/misc1.c +++ b/src/misc1.c @@ -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 diff --git a/src/version.c b/src/version.c index 0f1f904152..7c5f362b79 100644 --- a/src/version.c +++ b/src/version.c @@ -728,6 +728,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 864, /**/ 863, /**/ -- cgit v1.2.3