diff options
author | Peter Eisentraut | 2023-11-14 09:44:44 +0000 |
---|---|---|
committer | Peter Eisentraut | 2023-11-14 09:44:44 +0000 |
commit | e7814b40d02582238b14d838c2458825d9170178 (patch) | |
tree | 5bd9c61284d418da28e6b189e8253ba9cb22a1b9 /src/pl/tcl | |
parent | 43071777be134bb471f316fea66d928e6c40e37f (diff) |
Fix capitalization of "Tcl"
Diffstat (limited to 'src/pl/tcl')
-rw-r--r-- | src/pl/tcl/pltcl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pl/tcl/pltcl.c b/src/pl/tcl/pltcl.c index e8f9d7b289c..6187e157817 100644 --- a/src/pl/tcl/pltcl.c +++ b/src/pl/tcl/pltcl.c @@ -334,7 +334,7 @@ static void pltcl_init_tuple_store(pltcl_call_state *call_state); /* * Hack to override Tcl's builtin Notifier subsystem. This prevents the * backend from becoming multithreaded, which breaks all sorts of things. - * That happens in the default version of Tcl_InitNotifier if the TCL library + * That happens in the default version of Tcl_InitNotifier if the Tcl library * has been compiled with multithreading support (i.e. when TCL_THREADS is * defined under Unix, and in all cases under Windows). * It's okay to disable the notifier because we never enter the Tcl event loop |