diff options
author | Bram Moolenaar <Bram@vim.org> | 2012-07-27 21:05:54 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2012-07-27 21:05:54 +0200 |
commit | dad937f77ff84e864ee154379ce199340972040a (patch) | |
tree | d179c0078f8f81a61b1e6772b96a574415a35797 | |
parent | 6c35beaa11d38fc0c37a3d209295772313b12003 (diff) | |
download | vim-dad937f77ff84e864ee154379ce199340972040a.zip |
updated for version 7.3.616
Problem: Can't compile without +visual.
Solution: Add #ifdef.
-rw-r--r-- | src/normal.c | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/normal.c b/src/normal.c index 0791b1a38..100aadce7 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 eecc4d851..b39f5c5d9 100644 --- a/src/version.c +++ b/src/version.c @@ -715,6 +715,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 616, +/**/ 615, /**/ 614, |