comparison src/ex_docmd.c @ 3724:ac13ea2b098d v7.3.621

updated for version 7.3.621 Problem: Compiler warnings on 64 bit windows. Solution: Add type casts. (Mike Williams)
author Bram Moolenaar <bram@vim.org>
date Thu, 02 Aug 2012 21:24:42 +0200
parents 73db39ca1877
children 99f076ca8d84
comparison
equal deleted inserted replaced
3723:3f17b871bfee 3724:ac13ea2b098d
3390 return NULL; 3390 return NULL;
3391 3391
3392 /* Find start of last argument (argument just before cursor): */ 3392 /* Find start of last argument (argument just before cursor): */
3393 p = buff; 3393 p = buff;
3394 xp->xp_pattern = p; 3394 xp->xp_pattern = p;
3395 len = STRLEN(buff); 3395 len = (int)STRLEN(buff);
3396 while (*p && p < buff + len) 3396 while (*p && p < buff + len)
3397 { 3397 {
3398 if (*p == ' ' || *p == TAB) 3398 if (*p == ' ' || *p == TAB)
3399 { 3399 {
3400 /* argument starts after a space */ 3400 /* argument starts after a space */