mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 8.2.0209: function a bit far away from where it's used
Problem: Function a bit far away from where it's used. Solution: Move function close to where it's used. (Ken Takata, closes #5569)
This commit is contained in:
@@ -1255,41 +1255,6 @@ f_isdirectory(typval_T *argvars, typval_T *rettv)
|
|||||||
rettv->vval.v_number = mch_isdir(tv_get_string(&argvars[0]));
|
rettv->vval.v_number = mch_isdir(tv_get_string(&argvars[0]));
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
* Evaluate "expr" (= "context") for readdir().
|
|
||||||
*/
|
|
||||||
static int
|
|
||||||
readdir_checkitem(void *context, char_u *name)
|
|
||||||
{
|
|
||||||
typval_T *expr = (typval_T *)context;
|
|
||||||
typval_T save_val;
|
|
||||||
typval_T rettv;
|
|
||||||
typval_T argv[2];
|
|
||||||
int retval = 0;
|
|
||||||
int error = FALSE;
|
|
||||||
|
|
||||||
if (expr->v_type == VAR_UNKNOWN)
|
|
||||||
return 1;
|
|
||||||
|
|
||||||
prepare_vimvar(VV_VAL, &save_val);
|
|
||||||
set_vim_var_string(VV_VAL, name, -1);
|
|
||||||
argv[0].v_type = VAR_STRING;
|
|
||||||
argv[0].vval.v_string = name;
|
|
||||||
|
|
||||||
if (eval_expr_typval(expr, argv, 1, &rettv) == FAIL)
|
|
||||||
goto theend;
|
|
||||||
|
|
||||||
retval = tv_get_number_chk(&rettv, &error);
|
|
||||||
if (error)
|
|
||||||
retval = -1;
|
|
||||||
clear_tv(&rettv);
|
|
||||||
|
|
||||||
theend:
|
|
||||||
set_vim_var_string(VV_VAL, NULL, 0);
|
|
||||||
restore_vimvar(VV_VAL, &save_val);
|
|
||||||
return retval;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Create the directory in which "dir" is located, and higher levels when
|
* Create the directory in which "dir" is located, and higher levels when
|
||||||
* needed.
|
* needed.
|
||||||
@@ -1385,6 +1350,41 @@ f_pathshorten(typval_T *argvars, typval_T *rettv)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Evaluate "expr" (= "context") for readdir().
|
||||||
|
*/
|
||||||
|
static int
|
||||||
|
readdir_checkitem(void *context, char_u *name)
|
||||||
|
{
|
||||||
|
typval_T *expr = (typval_T *)context;
|
||||||
|
typval_T save_val;
|
||||||
|
typval_T rettv;
|
||||||
|
typval_T argv[2];
|
||||||
|
int retval = 0;
|
||||||
|
int error = FALSE;
|
||||||
|
|
||||||
|
if (expr->v_type == VAR_UNKNOWN)
|
||||||
|
return 1;
|
||||||
|
|
||||||
|
prepare_vimvar(VV_VAL, &save_val);
|
||||||
|
set_vim_var_string(VV_VAL, name, -1);
|
||||||
|
argv[0].v_type = VAR_STRING;
|
||||||
|
argv[0].vval.v_string = name;
|
||||||
|
|
||||||
|
if (eval_expr_typval(expr, argv, 1, &rettv) == FAIL)
|
||||||
|
goto theend;
|
||||||
|
|
||||||
|
retval = tv_get_number_chk(&rettv, &error);
|
||||||
|
if (error)
|
||||||
|
retval = -1;
|
||||||
|
clear_tv(&rettv);
|
||||||
|
|
||||||
|
theend:
|
||||||
|
set_vim_var_string(VV_VAL, NULL, 0);
|
||||||
|
restore_vimvar(VV_VAL, &save_val);
|
||||||
|
return retval;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* "readdir()" function
|
* "readdir()" function
|
||||||
*/
|
*/
|
||||||
|
@@ -742,6 +742,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 */
|
||||||
|
/**/
|
||||||
|
209,
|
||||||
/**/
|
/**/
|
||||||
208,
|
208,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user