From 2ce97ae6aaec7007cca16a446d73161b82f2ba69 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 9 Apr 2022 21:13:51 +0100 Subject: patch 8.2.4725: unused variable in tiny build Problem: Unused variable in tiny build. 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 b5b044843..563492551 100644 --- a/src/normal.c +++ b/src/normal.c @@ -4197,7 +4197,9 @@ normal_search( { int i; searchit_arg_T sia; +#ifdef FEAT_SEARCH_EXTRA pos_T prev_cursor = curwin->w_cursor; +#endif cap->oap->motion_type = MCHAR; cap->oap->inclusive = FALSE; diff --git a/src/version.c b/src/version.c index ecf846152..740c32d48 100644 --- a/src/version.c +++ b/src/version.c @@ -746,6 +746,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 4725, /**/ 4724, /**/ -- cgit v1.2.1