comparison src/eval.c @ 2419:f579b934f51d vim73

Fix build warnings and problems for tiny/small Win32 build. (Mike Williams)
author Bram Moolenaar <bram@vim.org>
date Tue, 27 Jul 2010 22:41:43 +0200
parents 0ca06a92adfb
children 2533a507001f
comparison
equal deleted inserted replaced
2418:da067045878f 2419:f579b934f51d
13506 { 13506 {
13507 #ifdef FEAT_MBYTE 13507 #ifdef FEAT_MBYTE
13508 startcol = (colnr_T)(regmatch.startp[0] 13508 startcol = (colnr_T)(regmatch.startp[0]
13509 + (*mb_ptr2len)(regmatch.startp[0]) - str); 13509 + (*mb_ptr2len)(regmatch.startp[0]) - str);
13510 #else 13510 #else
13511 startcol = regmatch.startp[0] + 1 - str; 13511 startcol = (colnr_T)(regmatch.startp[0] + 1 - str);
13512 #endif 13512 #endif
13513 } 13513 }
13514 } 13514 }
13515 13515
13516 if (match) 13516 if (match)