From dad937f77ff84e864ee154379ce199340972040a Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Fri, 27 Jul 2012 21:05:54 +0200 Subject: updated for version 7.3.616 Problem: Can't compile without +visual. Solution: Add #ifdef. --- src/normal.c | 2 ++ src/version.c | 2 ++ 2 files changed, 4 insertions(+) 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, /**/ -- cgit v1.2.3