From: Bram Moolenaar Date: Fri, 27 Jul 2012 19:05:54 +0000 (+0200) Subject: updated for version 7.3.616 X-Git-Tag: v7.3.616 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dad937f77ff84e864ee154379ce199340972040a;p=thirdparty%2Fvim.git updated for version 7.3.616 Problem: Can't compile without +visual. Solution: Add #ifdef. --- diff --git a/src/normal.c b/src/normal.c index 0791b1a38d..100aadce77 100644 --- a/src/normal.c +++ b/src/normal.c @@ -8002,7 +8002,9 @@ nv_g_cmd(cap) */ case 'N': case 'n': +#ifdef FEAT_VISUAL if (!current_search(cap->count1, cap->nchar == 'n')) +#endif beep_flush(); break; diff --git a/src/version.c b/src/version.c index eecc4d8517..b39f5c5d94 100644 --- a/src/version.c +++ b/src/version.c @@ -714,6 +714,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 616, /**/ 615, /**/