comparison src/if_tcl.c @ 26418:9a1b96ae26d1 v8.2.3740

patch 8.2.3740: memory left allocated on exit when using Tcl Commit: https://github.com/vim/vim/commit/c7269f862748c3b0f56b5a651019e18c7d5190ee Author: Bram Moolenaar <Bram@vim.org> Date: Sun Dec 5 11:36:23 2021 +0000 patch 8.2.3740: memory left allocated on exit when using Tcl Problem: Memory left allocated on exit when using Tcl. Solution: Call Tcl_Finalize().
author Bram Moolenaar <Bram@vim.org>
date Sun, 05 Dec 2021 12:45:03 +0100
parents c4298ed56ffa
children 65ab0b035dd8
comparison
equal deleted inserted replaced
26417:49cd1ff825c4 26418:9a1b96ae26d1
246 #else 246 #else
247 find_executable_arg = arg; 247 find_executable_arg = arg;
248 #endif 248 #endif
249 } 249 }
250 250
251 #if defined(EXITFREE) || defined(PROTO)
252 void
253 vim_tcl_finalize(void)
254 {
255 Tcl_Finalize();
256 }
257 #endif
258
251 #if defined(DYNAMIC_TCL) || defined(PROTO) 259 #if defined(DYNAMIC_TCL) || defined(PROTO)
252 260
253 static int stubs_initialized = FALSE; 261 static int stubs_initialized = FALSE;
254 262
255 /* 263 /*