comparison src/version.c @ 474:a5fcf36ef512 v7.0127

updated for version 7.0127
author vimboss
date Wed, 10 Aug 2005 21:07:57 +0000
parents f713fc55bf7b
children 25a70b1cd2da
comparison
equal deleted inserted replaced
473:4a7320e53f32 474:a5fcf36ef512
1201 { 1201 {
1202 #ifdef FEAT_MBYTE 1202 #ifdef FEAT_MBYTE
1203 if (has_mbyte) 1203 if (has_mbyte)
1204 { 1204 {
1205 clen += ptr2cells(p + l); 1205 clen += ptr2cells(p + l);
1206 l += (*mb_ptr2len_check)(p + l) - 1; 1206 l += (*mb_ptr2len)(p + l) - 1;
1207 } 1207 }
1208 else 1208 else
1209 #endif 1209 #endif
1210 clen += byte2cells(p[l]); 1210 clen += byte2cells(p[l]);
1211 } 1211 }