Fix capitalization of "Tcl"
authorPeter Eisentraut <[email protected]>
Tue, 14 Nov 2023 09:44:44 +0000 (10:44 +0100)
committerPeter Eisentraut <[email protected]>
Tue, 14 Nov 2023 09:44:44 +0000 (10:44 +0100)
doc/src/sgml/install-windows.sgml
doc/src/sgml/xact.sgml
src/pl/tcl/pltcl.c

index f959d27d201103450fa4cdf082187ece3ca43780..d2cc688c1f78a417b69685541968c802624ad71c 100644 (file)
@@ -205,7 +205,7 @@ $ENV{MSBFLAGS}="/m";
 
    <variablelist>
     <varlistentry>
-     <term><productname>ActiveState TCL</productname></term>
+     <term><productname>ActiveState Tcl</productname></term>
      <listitem><para>
       Required for building <application>PL/Tcl</application> (Note: version
       8.4 is required, the free Standard Distribution is sufficient).
index 0f768a23a6975b5721a46512415786f2ac0a67da..07b94b11329c07bbea46e3792903bda6a8eb9d4b 100644 (file)
    Subtransactions can be started explicitly using the
    <command>SAVEPOINT</command> command, but can also be started in
    other ways, such as PL/pgSQL's <literal>EXCEPTION</literal> clause.
-   PL/Python and PL/TCL also support explicit subtransactions.
+   PL/Python and PL/Tcl also support explicit subtransactions.
    Subtransactions can also be started from other subtransactions.
    The top-level transaction and its child subtransactions form a
    hierarchy or tree, which is why we refer to the main transaction as
index e8f9d7b289c687733f94abe1e00c0365cca3965f..6187e157817e87a3081bddb9bcefd4482d19e1f6 100644 (file)
@@ -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