comparison src/window.c @ 345:b3989ac62a21

updated for version 7.0090
author vimboss
date Wed, 22 Jun 2005 22:25:07 +0000
parents 7033303ea0c0
children 644578c9e219
comparison
equal deleted inserted replaced
344:7033303ea0c0 345:b3989ac62a21
4538 /* 4538 /*
4539 * search forward for what could be the start of a file name 4539 * search forward for what could be the start of a file name
4540 */ 4540 */
4541 ptr = line + col; 4541 ptr = line + col;
4542 while (*ptr != NUL && !vim_isfilec(*ptr)) 4542 while (*ptr != NUL && !vim_isfilec(*ptr))
4543 ++ptr; 4543 mb_ptr_adv(ptr);
4544 if (*ptr == NUL) /* nothing found */ 4544 if (*ptr == NUL) /* nothing found */
4545 { 4545 {
4546 if (options & FNAME_MESS) 4546 if (options & FNAME_MESS)
4547 EMSG(_("E446: No file name under cursor")); 4547 EMSG(_("E446: No file name under cursor"));
4548 return NULL; 4548 return NULL;