comparison src/proto/if_tcl.pro @ 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 21b0a39d13ed
children f103da6ba95f
comparison
equal deleted inserted replaced
26417:49cd1ff825c4 26418:9a1b96ae26d1
1 /* if_tcl.c */ 1 /* if_tcl.c */
2 void vim_tcl_init(char *arg); 2 void vim_tcl_init(char *arg);
3 void vim_tcl_finalize(void);
3 int tcl_enabled(int verbose); 4 int tcl_enabled(int verbose);
4 void tcl_end(void); 5 void tcl_end(void);
5 void ex_tcl(exarg_T *eap); 6 void ex_tcl(exarg_T *eap);
6 void ex_tclfile(exarg_T *eap); 7 void ex_tclfile(exarg_T *eap);
7 void ex_tcldo(exarg_T *eap); 8 void ex_tcldo(exarg_T *eap);