Skip to content

Commit 2ce97ae

Browse files
committed
patch 8.2.4725: unused variable in tiny build
Problem: Unused variable in tiny build. Solution: Add #ifdef.
1 parent a439938 commit 2ce97ae

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/normal.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4197,7 +4197,9 @@ normal_search(
41974197
{
41984198
int i;
41994199
searchit_arg_T sia;
4200+
#ifdef FEAT_SEARCH_EXTRA
42004201
pos_T prev_cursor = curwin->w_cursor;
4202+
#endif
42014203

42024204
cap->oap->motion_type = MCHAR;
42034205
cap->oap->inclusive = FALSE;

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -746,6 +746,8 @@ static char *(features[]) =
746746

747747
static int included_patches[] =
748748
{ /* Add new patch number below this line */
749+
/**/
750+
4725,
749751
/**/
750752
4724,
751753
/**/

0 commit comments

Comments
 (0)