mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 8.2.4725: unused variable in tiny build
Problem: Unused variable in tiny build. Solution: Add #ifdef.
This commit is contained in:
parent
a43993897a
commit
2ce97ae6aa
@ -4197,7 +4197,9 @@ normal_search(
|
|||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
searchit_arg_T sia;
|
searchit_arg_T sia;
|
||||||
|
#ifdef FEAT_SEARCH_EXTRA
|
||||||
pos_T prev_cursor = curwin->w_cursor;
|
pos_T prev_cursor = curwin->w_cursor;
|
||||||
|
#endif
|
||||||
|
|
||||||
cap->oap->motion_type = MCHAR;
|
cap->oap->motion_type = MCHAR;
|
||||||
cap->oap->inclusive = FALSE;
|
cap->oap->inclusive = FALSE;
|
||||||
|
@ -746,6 +746,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
4725,
|
||||||
/**/
|
/**/
|
||||||
4724,
|
4724,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user