diff options
author | Tom Lane | 2001-10-13 15:24:23 +0000 |
---|---|---|
committer | Tom Lane | 2001-10-13 15:24:23 +0000 |
commit | 5ae94d52daf4cc64b2f5850e345f7e9330d5552d (patch) | |
tree | a356f961d006ca641352a217df1ac43af845c1f7 | |
parent | bf3ffe5b03a4366ddc80e2593c28c8b091fa2f4c (diff) |
Residual cleanup from making pltcl unknown support always enabled.
-rw-r--r-- | src/Makefile.global.in | 1 | ||||
-rw-r--r-- | src/pl/tcl/modules/README | 7 |
2 files changed, 2 insertions, 6 deletions
diff --git a/src/Makefile.global.in b/src/Makefile.global.in index be6f2ef821..1d9b9e02e2 100644 --- a/src/Makefile.global.in +++ b/src/Makefile.global.in @@ -124,7 +124,6 @@ with_java = @with_java@ with_perl = @with_perl@ with_python = @with_python@ with_tcl = @with_tcl@ -enable_pltcl_unknown = @enable_pltcl_unknown@ with_tk = @with_tk@ enable_odbc = @enable_odbc@ with_iodbc = @with_iodbc@ diff --git a/src/pl/tcl/modules/README b/src/pl/tcl/modules/README index 4a948c5287..2905cfe8cb 100644 --- a/src/pl/tcl/modules/README +++ b/src/pl/tcl/modules/README @@ -1,7 +1,4 @@ - The module support over the unknown command requires, that - the PL/Tcl call handler is compiled with -DPLTCL_UNKNOWN_SUPPORT. - Regular Tcl scripts of any size (over 8K :-) can be loaded into the table pltcl_modules using the pltcl_loadmod script. The script checks the modules that the procedure names don't overwrite @@ -11,11 +8,11 @@ All procedures defined in the module files are automatically added to the table pltcl_modfuncs. This table is used by the unknown procedure to determine if an unknown command can be - loaded by sourcing a module. In that case the unknonw procedure + loaded by sourcing a module. In that case the unknown procedure will silently source in the module and reexecute the original command that invoked unknown. - I know, thist readme should be more explanatory - but time. + I know, this readme should be more explanatory - but time. Jan |