Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | More usage of TclNewObj() in stead of Tcl_NewObj() and TclNewIntObj() in ↵ | jan.nijtmans | 2020-10-13 | 1 | -1/+1 |
| | | | | stead of Tcl_NewIntObj() | ||||
* | Eliminate many unnecessary type-casts, mostly (size_t) when value is already ↵ | jan.nijtmans | 2020-08-11 | 1 | -2/+2 |
| | | | | size_t or int | ||||
* | Fix [d402ffe76]: Win32 potential crash when using main(). Thanks to ↵ | jan.nijtmans | 2020-05-11 | 1 | -20/+11 |
| | | | | Christian Werner for the Bug report and the Fix. | ||||
* | Make sure that "Windows NT" is the only supported Windows platform. On ↵ | jan.nijtmans | 2020-04-03 | 1 | -12/+4 |
| | | | | Windows CE, no chance that Tcl 8.6 will ever run .... Windows XP is the minimum now. | ||||
* | Remove MODULE_SCOPE function TclpSetInterfaces(), which is just empty. | jan.nijtmans | 2020-03-31 | 1 | -7/+6 |
| | | | Increase size of MSG structure in Cygwin Notifier: Should conform with Win32 size. Some related code cleanup. | ||||
* | Even more uppercase HEX representations in source-code | jan.nijtmans | 2020-03-22 | 1 | -1/+1 |
| | |||||
* | Merge 8.6. | jan.nijtmans | 2020-03-13 | 1 | -1/+1 |
|\ | | | | | Code review: Tcl 8.6 doesn't (need to) build with -DUNICODE -D_UNICODE any more, so things can be simplified. Good work, thanks! | ||||
* | | fix back-ported from tclSE (with several modifications due to conflicts and ↵ | sebres | 2020-03-13 | 1 | -2/+14 |
|/ | | | | compat reasons) | ||||
* | Fix some gcc(-9) warnings caused by -Wcast-function-type | jan.nijtmans | 2020-03-04 | 1 | -2/+2 |
| | |||||
* | Fix [0b9332722a]: Support utf-8 on Windows console | jan.nijtmans | 2020-01-13 | 1 | -3/+9 |
| | |||||
* | Some more *A() -> *W() Win32 API changes, making Unicode calls Explicit. | jan.nijtmans | 2019-09-19 | 1 | -1/+1 |
| | |||||
* | TCHAR -> WCHAR converions (and corresponding Win32 API call changes), since ↵ | jan.nijtmans | 2019-09-18 | 1 | -7/+7 |
| | | | | we are impicitly compiling with -DUNICODE | ||||
* | windows (mingw build): fix debug recognition (::tcl_platform(debug)), no ↵ | sebres | 2019-09-02 | 1 | -1/+1 |
| | | | | debug if NDEBUG is set | ||||
* | Fix [8566dc22f9]: various spelling fixes in comments | jan.nijtmans | 2019-08-22 | 1 | -1/+1 |
|\ | |||||
| * | Fix [8566dc22f9]: various spelling fixes in comments | jan.nijtmans | 2019-08-22 | 1 | -1/+1 |
| | | |||||
* | | Simplify ToUtf(), expecially for TCL_UTF_MAX>3 (with correct surrogate ↵ | jan.nijtmans | 2018-06-25 | 1 | -8/+11 |
| | | | | | | | | | | handling). Fix various typo's | ||||
* | | merge 8.5 (conflicts resolved, rewritten without winapi-stubs) | sebres | 2018-05-28 | 1 | -11/+23 |
|\ \ | |/ | |||||
| * | optimized winapi-stubs loading (8.5th only); if user name specified without ↵ | sebres | 2018-05-25 | 1 | -11/+23 |
| | | | | | | | | domain and equals the current user - try safest and fastest way to get current user-home path (without usage of netapi) | ||||
* | | Use GetModuleHandle() in stead of LoadLibrary() when the handle is needed ↵ | jan.nijtmans | 2017-05-03 | 1 | -14/+6 |
|\ \ | |/ | | | | | | | for an already loaded dll. Fix filesystem-1.52 (only works correctly on UNIX) | ||||
| * | Use GetModuleHandle() in stead of LoadLibrary() when the handle is needed ↵ | jan.nijtmans | 2017-05-03 | 1 | -4/+1 |
| | | | | | | | | | | for an already loaded dll. Fix filesystem-1.52 (only works correctly on UNIX) | ||||
* | | merge core-8-6-branch | jan.nijtmans | 2017-04-28 | 1 | -1/+1 |
|\ \ | |||||
* | | | shared structures of pipe-workers rewritten using atomic state of the thread; | sebres | 2017-04-11 | 1 | -0/+20 |
|/ / | | | | | | | asynchronous start/stop of pipe-workers (if possible), try the soft way to end workers using cancelSynchronousIo before it would be terminated; | ||||
* | | Remove unused variable, don't use deprecated function, some formatting. | jan.nijtmans | 2014-04-16 | 1 | -5/+5 |
| | | |||||
* | | Upgrade from Winsock 1.1 to Winsock 2.2, which is always available on ↵ | jan.nijtmans | 2014-04-16 | 1 | -14/+10 |
|\ \ | |/ | | | | | | | | | Win2000+. See: [http://msdn.microsoft.com/en-us/library/windows/desktop/ms742213%28v=vs.85%29.aspx] for details. Move winsock initialization to TclpInitPlatform(void), so we can be sure everywhere that we have an initialized winsock2. Stub entries for TclWinGetServByName/TclWinGetSockOpt/TclWinSetSockOpt are no longer necessary (will be removed in 9.0, but are kept in 8.x) | ||||
| * | Upgrade from Winsock 1.1 to Winsock 2.2, which is always available on ↵ | jan.nijtmans | 2014-04-16 | 1 | -14/+10 |
| | | | | | | | | | | | | Win2000+. See: [http://msdn.microsoft.com/en-us/library/windows/desktop/ms742213%28v=vs.85%29.aspx] for details. Move winsock initialization to TclpInitPlatform(void), so we can be sure everywhere that we have an initialized winsock2. Stub entries for TclWinGetServByName/TclWinGetSockOpt/TclWinSetSockOpt are no longer necessary (will be removed in 9.0, but are kept in 8.x) | ||||
* | | Satisfy required position of __stdcall from VC++ | jan.nijtmans | 2014-02-04 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Satisfy required position of __stdcall from VC++ | jan.nijtmans | 2014-02-04 | 1 | -2/+2 |
| | | |||||
* | | Add missing __stdcall (which crashes on win32), and clean-up indenting | jan.nijtmans | 2014-02-04 | 1 | -10/+11 |
|\ \ | |/ | |||||
| * | Add missing __stdcall (which crashes on win32), and clean-up indenting | jan.nijtmans | 2014-02-04 | 1 | -10/+11 |
| | | |||||
* | | Fix [651e828a52]: Wrong Windows version reported for Windows 8.1 | jan.nijtmans | 2014-02-03 | 1 | -4/+14 |
|\ \ | |/ | |||||
| * | Fix [651e828a52]: Wrong Windows version reported for Windows 8.1 | jan.nijtmans | 2014-02-03 | 1 | -4/+14 |
| | | |||||
* | | Starting with Windows 8 DSK, GetVersionExA is deprecated | jan.nijtmans | 2013-11-20 | 1 | -3/+3 |
|\ \ | |/ | |||||
| * | Starting with Windows 8 DSK, GetVersionExA is deprecated | jan.nijtmans | 2013-11-20 | 1 | -3/+3 |
| | | |||||
* | | Eliminate a lot of dead code (for Windows 95/98/ME only). | jan.nijtmans | 2013-06-19 | 1 | -6/+3 |
| | | | | | | Eliminate all usage of TclWinSetInterfaces(), which does exactly the same as TclpSetInterfaces(), but keep exported symbol and stub entry. | ||||
* | | also search for the library directory (init.tcl, encodings, etc) relative to ↵ | Joe Mistachkin | 2012-11-13 | 1 | -1/+63 |
|\ \ | |/ | | | | | the build directory associated with the source checkout. | ||||
| * | also search for the library directory (init.tcl, encodings, etc) relative to ↵ | Joe Mistachkin | 2012-11-13 | 1 | -1/+63 |
| | | | | | | | | the build directory associated with the source checkout. | ||||
* | | Move CYGWIN-specific stuff from tclPort.h to tclUnixPort.h, where it belongs | jan.nijtmans | 2012-04-27 | 1 | -2/+0 |
|\ \ | |/ | |||||
| * | [Bug 3448512]: clock scan "1958-01-01" fails only in debug compilation | jan.nijtmans | 2012-04-11 | 1 | -1/+1 |
| |\ | |||||
| | * | [Bug 3448512]: clock scan "1958-01-01" fails only in debug compilation | jan.nijtmans | 2012-04-11 | 1 | -1/+1 |
| | | | |||||
* | | | * generic/tclUtil.c (TclDStringToObj): Added internal function to make | dkf | 2012-04-25 | 1 | -3/+2 |
| | | | | | | | | | | | | the fairly-common operation of converting a DString into an Obj a more efficient one. | ||||
* | | | Adjust ckalloc/ckfree macros to greatly reduce number of explicit casts in | dkf | 2011-03-12 | 1 | -4/+4 |
| | | | | | | | | | rest of Tcl source code. No ABI change. API change *should* be harmless. | ||||
* | | | Now that we're no longer using SCM based on RCS, the RCS Keyword lines | dgp | 2011-03-02 | 1 | -2/+0 |
|\ \ \ | |/ / | | | | cause more harm than good. Purged them (except in zlib files). | ||||
| * | | Now that we're no longer using SCM based on RCS, the RCS Keyword lines cause | dgp | 2011-03-02 | 1 | -2/+0 |
| |\ \ | | |/ | | | | more harm than good. Purged them. | ||||
| | * | Now that we're no longer using SCM based on RCS, the RCS Keyword lines cause | dgp | 2011-03-01 | 1 | -2/+0 |
| | | | | | | | | | more harm than good. Purged them. | ||||
| | * | * generic/tclBasic.c: | Miguel Sofer | 2005-10-23 | 1 | -1/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * generic/tclBinary.c: * generic/tclCmdAH.c: * generic/tclCmdIL.c: * generic/tclCmdMZ.c: * generic/tclExecute.c: * generic/tclLink.c: * generic/tclMain.c: * generic/tclProc.c: * generic/tclScan.c: * generic/tclTest.c: * generic/tclVar.c: * mac/tclMacInit.c: * unix/tclUnixInit.c: * win/tclWinInit.c: Insure that the core never calls TclPtrSetVar, Tcl_SetVar2Ex, Tcl_ObjSetVar2 or Tcl_SetObjErrorCode with a 0-ref new value. It is not possible to handle error returns correctly in that case [Bug 1334947], one has the choice of leaking the object in some cases, or else risk crashing in some others. | ||||
| | * | * generic/tclInt.h: | hobbs | 2004-03-29 | 1 | -3/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * generic/tclEncoding.c (TclFindEncodings, Tcl_FindExecutable): * mac/tclMacInit.c (TclpInitLibraryPath): Correct handling of UTF * unix/tclUnixInit.c (TclpInitLibraryPath): data that is actually * win/tclWinFile.c (TclpFindExecutable): "clean", allowing the * win/tclWinInit.c (TclpInitLibraryPath): loading of Tcl from paths that contain multi-byte chars on Windows [Bug 920667] | ||||
| | * | * win/tclWinInit.c (TclpSetInitialEncodings): recognize WIN32_CE | hobbs | 2004-03-21 | 1 | -5/+8 |
| | | | | | | | | | | | | as a unicode (WCHAR) platform. | ||||
| | * | * win/tclWinInit.c (AppendEnvironment): | mdejong | 2004-02-20 | 1 | -4/+23 |
| | | | | | | | | | | | | | | | | | | | | | | | | Use the tail component of the passed in lib path instead of just blindly using lib+4. That worked when lib was "lib/..." but fails for other values. Thanks go to Patrick Samson for pointing this out. | ||||
| | * | * tests/unixInit.test (unixInit-2.10): re-enabled. | dgp | 2003-11-10 | 1 | -3/+22 |
| | | | | | | | | | | | | | | | | | | * unix/tclUnixInit.c (TclpInitLibraryPath): Alternative fix * win/tclWinInit.c (TclpInitLibraryPath): for [Bug 832657] that should not run afoul of startup constraints. | ||||
| | * | * win/tclWinInit.c: recognize amd64 and ia32_on_win64 cpus and | hobbs | 2003-08-06 | 1 | -5/+12 |
| | | | | | | | | | | | | Windows CE platform. |