Remove char_u: vim_getenv()

This commit is contained in:
Mark Bainter
2015-04-12 21:17:16 +00:00
parent 9a5e87ac83
commit 4848158cc1
6 changed files with 31 additions and 33 deletions

View File

@@ -5117,7 +5117,7 @@ void fix_help_buffer(void)
while (*p != NUL) {
copy_option_part(&p, NameBuff, MAXPATHL, ",");
mustfree = FALSE;
rt = vim_getenv((char_u *)"VIMRUNTIME", &mustfree);
rt = (char_u *)vim_getenv("VIMRUNTIME", &mustfree);
if (path_full_compare(rt, NameBuff, FALSE) != kEqualFiles) {
int fcount;
char_u **fnames;