Home
last modified time | relevance | path

Searched refs:newres (Results 1 – 1 of 1) sorted by relevance

/vim-8.2.3635/src/
H A Dex_docmd.c9196 char_u *newres; in expand_sfile() local
9226 newres = alloc(len); in expand_sfile()
9227 if (newres == NULL) in expand_sfile()
9233 mch_memmove(newres, result, (size_t)(p - result)); in expand_sfile()
9234 STRCPY(newres + (p - result), repl); in expand_sfile()
9235 len = (int)STRLEN(newres); in expand_sfile()
9236 STRCAT(newres, p + srclen); in expand_sfile()
9239 result = newres; in expand_sfile()
9240 p = newres + len; // continue after the match in expand_sfile()