Remove FEAT_EVAL

Support for VimScript, :let, :if, etc.
This commit is contained in:
Hinidu
2014-04-11 23:58:31 +03:00
committed by Justin M. Keyes
parent 5f2ccb94d2
commit a29b94e2f9
9 changed files with 3 additions and 27 deletions

View File

@@ -7086,8 +7086,6 @@ vim_regexec (
return rmp->regprog->engine->regexec_nl(rmp, line, col, false);
}
#if defined(FEAT_MODIFY_FNAME) || defined(FEAT_EVAL) \
|| defined(FIND_REPLACE_DIALOG) || defined(PROTO)
/*
* Like vim_regexec(), but consider a "\n" in "line" to be a line break.
*/
@@ -7095,7 +7093,6 @@ int vim_regexec_nl(regmatch_T *rmp, char_u *line, colnr_T col)
{
return rmp->regprog->engine->regexec_nl(rmp, line, col, true);
}
#endif
/*
* Match a regexp against multiple lines.