diff options
Diffstat (limited to 'src/interfaces/libpgtcl/pgtcl.c')
-rw-r--r-- | src/interfaces/libpgtcl/pgtcl.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/interfaces/libpgtcl/pgtcl.c b/src/interfaces/libpgtcl/pgtcl.c index 10f2ab03969..32e775f5d9b 100644 --- a/src/interfaces/libpgtcl/pgtcl.c +++ b/src/interfaces/libpgtcl/pgtcl.c @@ -10,7 +10,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/pgtcl.c,v 1.23 2001/09/17 00:42:42 tgl Exp $ + * $Header: /cvsroot/pgsql/src/interfaces/libpgtcl/Attic/pgtcl.c,v 1.24 2001/10/25 05:50:12 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -29,7 +29,7 @@ int Pgtcl_Init(Tcl_Interp *interp) { - double tclversion; + double tclversion; /* * finish off the ChannelType struct. Much easier to do it here then @@ -41,8 +41,9 @@ Pgtcl_Init(Tcl_Interp *interp) #endif /* - * Tcl versions >= 8.1 use UTF-8 for their internal string representation. - * Therefore PGCLIENTENCODING must be set to UNICODE for these versions. + * Tcl versions >= 8.1 use UTF-8 for their internal string + * representation. Therefore PGCLIENTENCODING must be set to UNICODE + * for these versions. */ Tcl_GetDouble(interp, Tcl_GetVar(interp, "tcl_version", TCL_GLOBAL_ONLY), &tclversion); if (tclversion >= 8.1) |