summaryrefslogtreecommitdiffstats
path: root/src/if_tcl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/if_tcl.c')
-rw-r--r--src/if_tcl.c19
1 files changed, 11 insertions, 8 deletions
diff --git a/src/if_tcl.c b/src/if_tcl.c
index 75f904a9ef..f66bfd3860 100644
--- a/src/if_tcl.c
+++ b/src/if_tcl.c
@@ -248,14 +248,6 @@ vim_tcl_init(char *arg)
#endif
}
-#if defined(EXITFREE) || defined(PROTO)
- void
-vim_tcl_finalize(void)
-{
- Tcl_Finalize();
-}
-#endif
-
#if defined(DYNAMIC_TCL) || defined(PROTO)
static int stubs_initialized = FALSE;
@@ -287,6 +279,17 @@ tcl_enabled(int verbose)
}
#endif
+#if defined(EXITFREE) || defined(PROTO)
+ void
+vim_tcl_finalize(void)
+{
+# ifdef DYNAMIC_TCL
+ if (stubs_initialized)
+# endif
+ Tcl_Finalize();
+}
+#endif
+
void
tcl_end(void)
{