From 2027973b5be693577bea0731b50ea4904d19ea8b Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 29 Mar 2020 20:51:07 +0200 Subject: 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. --- src/if_tcl.c | 7 ------- 1 file changed, 7 deletions(-) (limited to 'src/if_tcl.c') diff --git a/src/if_tcl.c b/src/if_tcl.c index c4f85fa71..45d880bda 100644 --- a/src/if_tcl.c +++ b/src/if_tcl.c @@ -280,13 +280,6 @@ tcl_enabled(int verbose) void tcl_end(void) { -#ifdef DYNAMIC_TCL - if (hTclLib) - { - close_dll(hTclLib); - hTclLib = NULL; - } -#endif } ///////////////////////////////////////////////////////////////////////////// -- cgit v1.2.1