1
0
forked from aniani/vim

patch 8.2.0479: unloading shared libraries on exit has no purpose

Problem:    Unloading shared libraries on exit has no purpose.
Solution:   Do not unload shared libraries on exit.
This commit is contained in:
Bram Moolenaar
2020-03-29 20:51:07 +02:00
parent 5908fdf72f
commit 2027973b5b
7 changed files with 3 additions and 75 deletions

View File

@@ -280,13 +280,6 @@ tcl_enabled(int verbose)
void
tcl_end(void)
{
#ifdef DYNAMIC_TCL
if (hTclLib)
{
close_dll(hTclLib);
hTclLib = NULL;
}
#endif
}
/////////////////////////////////////////////////////////////////////////////