comparison src/ex_cmds.c @ 7844:6669966db9e9 v7.4.1219

commit https://github.com/vim/vim/commit/937204a9175d0fe2f13c8bc4ebeb043003d7e7d7 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 30 23:37:38 2016 +0100 patch 7.4.1219 Problem: Build fails with +channel but without +float. Solution: Add #ifdef.
author Christian Brabandt <cb@256bit.org>
date Sat, 30 Jan 2016 23:45:04 +0100
parents f86adafb28d4
children 2f7ad0b85929
comparison
equal deleted inserted replaced
7843:7f160134eb47 7844:6669966db9e9
518 } 518 }
519 else 519 else
520 if (regmatch.regprog != NULL) 520 if (regmatch.regprog != NULL)
521 end_col = 0; 521 end_col = 0;
522 522
523 if (sort_nr || sort_flt) 523 if (sort_nr
524 #ifdef FEAT_FLOAT
525 || sort_flt
526 #endif
527 )
524 { 528 {
525 /* Make sure vim_str2nr doesn't read any digits past the end 529 /* Make sure vim_str2nr doesn't read any digits past the end
526 * of the match, by temporarily terminating the string there */ 530 * of the match, by temporarily terminating the string there */
527 s2 = s + end_col; 531 s2 = s + end_col;
528 c = *s2; 532 c = *s2;