0
0
mirror of https://github.com/vim/vim.git synced 2025-07-26 11:04:33 -04:00

patch 7.4.1219

Problem:    Build fails with +channel but without +float.
Solution:   Add #ifdef.
This commit is contained in:
Bram Moolenaar 2016-01-30 23:37:38 +01:00
parent 779a7759ad
commit 937204a917
2 changed files with 7 additions and 1 deletions

View File

@ -520,7 +520,11 @@ ex_sort(exarg_T *eap)
if (regmatch.regprog != NULL) if (regmatch.regprog != NULL)
end_col = 0; end_col = 0;
if (sort_nr || sort_flt) if (sort_nr
#ifdef FEAT_FLOAT
|| sort_flt
#endif
)
{ {
/* Make sure vim_str2nr doesn't read any digits past the end /* Make sure vim_str2nr doesn't read any digits past the end
* of the match, by temporarily terminating the string there */ * of the match, by temporarily terminating the string there */

View File

@ -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 */
/**/
1219,
/**/ /**/
1218, 1218,
/**/ /**/