From: cgf Date: Sun, 6 Oct 2002 20:00:35 +0000 (+0000) Subject: * win/tclWin32Dll.c (tclWinTCharEncoding): Remove 'static' since it is declared X-Git-Tag: cr-0x99~5697 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=85a95dd433745b9d4af40f27431b3ae8d53f5588;p=pf3gnuchains%2Fpf3gnuchains4x.git * win/tclWin32Dll.c (tclWinTCharEncoding): Remove 'static' since it is declared in header as exportable extern. --- diff --git a/tcl/ChangeLog b/tcl/ChangeLog index aa84695456..1985e0a7f4 100644 --- a/tcl/ChangeLog +++ b/tcl/ChangeLog @@ -1,3 +1,8 @@ +2002-10-05 Christopher Faylor + + * win/tclWin32Dll.c (tclWinTCharEncoding): Remove 'static' since it is + declared in header as exportable extern. + 2002-09-13 Keith Seitz From Mo Dejong : diff --git a/tcl/win/tclWin32Dll.c b/tcl/win/tclWin32Dll.c index 52b134d732..6599894952 100644 --- a/tcl/win/tclWin32Dll.c +++ b/tcl/win/tclWin32Dll.c @@ -118,7 +118,7 @@ static TclWinProcs unicodeProcs = { }; TclWinProcs *tclWinProcs; -static Tcl_Encoding tclWinTCharEncoding; +Tcl_Encoding tclWinTCharEncoding; /* * The following declaration is for the VC++ DLL entry point.