0
0
mirror of https://github.com/vim/vim.git synced 2025-09-25 03:54:15 -04:00

updated for version 7.0046

This commit is contained in:
Bram Moolenaar
2005-01-31 19:19:04 +00:00
parent b23c33872a
commit 2ce06f6eb9
24 changed files with 326 additions and 164 deletions

View File

@@ -1828,8 +1828,8 @@ ex_compiler(eap)
do_cmdline_cmd((char_u *)
"command -nargs=* CompilerSet setlocal <args>");
}
do_unlet((char_u *)"current_compiler");
do_unlet((char_u *)"b:current_compiler");
do_unlet((char_u *)"current_compiler", TRUE);
do_unlet((char_u *)"b:current_compiler", TRUE);
sprintf((char *)buf, "compiler/%s.vim", eap->arg);
if (cmd_runtime(buf, TRUE) == FAIL)
@@ -1853,7 +1853,7 @@ ex_compiler(eap)
vim_free(old_cur_comp);
}
else
do_unlet((char_u *)"current_compiler");
do_unlet((char_u *)"current_compiler", TRUE);
}
}
}