comparison src/if_tcl.c @ 19846:4acb165ed0bc v8.2.0479

patch 8.2.0479: unloading shared libraries on exit has no purpose Commit: https://github.com/vim/vim/commit/2027973b5be693577bea0731b50ea4904d19ea8b Author: Bram Moolenaar <Bram@vim.org> Date: Sun Mar 29 20:51:07 2020 +0200 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.
author Bram Moolenaar <Bram@vim.org>
date Sun, 29 Mar 2020 21:00:03 +0200
parents f0f9692d4487
children 6e1e4d7a7b39
comparison
equal deleted inserted replaced
19845:32787925de3c 19846:4acb165ed0bc
278 #endif 278 #endif
279 279
280 void 280 void
281 tcl_end(void) 281 tcl_end(void)
282 { 282 {
283 #ifdef DYNAMIC_TCL
284 if (hTclLib)
285 {
286 close_dll(hTclLib);
287 hTclLib = NULL;
288 }
289 #endif
290 } 283 }
291 284
292 ///////////////////////////////////////////////////////////////////////////// 285 /////////////////////////////////////////////////////////////////////////////
293 // Tcl commands 286 // Tcl commands
294 //////////////////////////////////////////////////////////////////////////// 287 ////////////////////////////////////////////////////////////////////////////