diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-03-29 20:51:07 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-03-29 20:51:07 +0200 |
commit | 2027973b5be693577bea0731b50ea4904d19ea8b (patch) | |
tree | 9d1be9f140c9ba2e03bac242fb52ee99288a6313 /src/if_tcl.c | |
parent | 5908fdf72fa1995735e38c46f254ddde81a87c1f (diff) | |
download | vim-git-2027973b5be693577bea0731b50ea4904d19ea8b.tar.gz |
patch 8.2.0479: unloading shared libraries on exit has no purposev8.2.0479
Problem: Unloading shared libraries on exit has no purpose.
Solution: Do not unload shared libraries on exit.
Diffstat (limited to 'src/if_tcl.c')
-rw-r--r-- | src/if_tcl.c | 7 |
1 files changed, 0 insertions, 7 deletions
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 } ///////////////////////////////////////////////////////////////////////////// |