Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Allow NULL callback on trace deletions [Bug 534728] | Miguel Sofer | 2002-03-25 | 3 | -4/+12 |
| | |||||
* | fix for [Bug 533907] in tclBasic.c (Tcl_EvalObjv). | Miguel Sofer | 2002-03-24 | 2 | -27/+39 |
| | |||||
* | * Use [interpreter] to set/query the | dgp | 2002-03-24 | 2 | -10/+13 |
| | | | | executable currently running the tcltest package. [Bug 454050] | ||||
* | fixed typo and compiler warning in last commit; all tests now pass on unix | vincentdarley | 2002-03-24 | 3 | -5/+5 |
| | |||||
* | * Allow non-proc commands to be used | dgp | 2002-03-24 | 2 | -6/+11 |
| | | | | as the customization hooks. [Bug 495662] | ||||
* | fs tests | vincentdarley | 2002-03-24 | 1 | -1/+3 |
| | |||||
* | fs tests | vincentdarley | 2002-03-24 | 1 | -1/+1 |
| | |||||
* | 4 fs fixes | vincentdarley | 2002-03-24 | 19 | -791/+1348 |
| | |||||
* | adding test for [Bug 533758], fixed earlier today. | Miguel Sofer | 2002-03-23 | 2 | -3/+30 |
| | |||||
* | win/tclWinInt.h: moved undef of TCL_STORAGE_CLASS. [Bug #478579] | hobbs | 2002-03-22 | 2 | -3/+7 |
| | |||||
* | fixed the errorInfo for return codes other than (TCL_OK, TCL_ERROR) to | Miguel Sofer | 2002-03-22 | 3 | -66/+28 |
| | | | | | runLevel 0 [Bug 533758]. Removed the static RecordTracebackInfo(), as its functionality is easily replicated by Tcl_LogCommandInfo. | ||||
* | * doc/expr.n: Improved documentation for ceil and floor [Bug 350535] | dkf | 2002-03-21 | 2 | -3/+9 |
| | |||||
* | Added Patch number | dgp | 2002-03-20 | 1 | -0/+1 |
| | |||||
* | * Updated interfaces of generic/tclVar.c according | dgp | 2002-03-20 | 15 | -80/+108 |
| | | | | to TIP 27. In particular, the "part2" arguments were CONSTified. | ||||
* | Fixed buffer overrun reported in 530320; luckily it is not likely to | dkf | 2002-03-15 | 3 | -4/+18 |
| | | | | | be exploitable in any meaningful way, but crashing Tcl instead of triggering an error still isn't good. | ||||
* | * win/configure: Regen. | mdejong | 2002-03-15 | 6 | -30/+306 |
| | | | | | | | | | | | | | | * win/configure.in: Add configure time test for SEH support in the compiler. * win/tclWin32Dll.c (ESP, EBP, TclpCheckStackSpace, _except_checkstackspace_handler): * win/tclWinChan.c (ESP, EBP, Tcl_MakeFileChannel, _except_makefilechannel_handler): * win/tclWinFCmd.c (ESP, EBP, DoRenameFile, _except_dorenamefile_handler, DoCopyFile, _except_docopyfile_handler): Implement SEH support under gcc using inline asm. Tcl and Tk should now compile with Mingw 1.1. [Patch 525746] | ||||
* | * win/tclWinFCmd.c (DoRenameFile, DoCopyFile): Handle | mdejong | 2002-03-14 | 2 | -3/+12 |
| | | | | | | | | an SEH exception with EXCEPTION_EXECUTE_HANDLER instead of restarting the faulting instruction with EXCEPTION_CONTINUE_EXECUTION. Bug 466102 provides an example of how restarting could send Tcl into an infinite loop. [Patch 525746] | ||||
* | * win/tclWinFCmd.c (DoRenameFile, DoCopyFile, DoDeleteFile, | mdejong | 2002-03-12 | 2 | -59/+42 |
| | | | | | | DoRemoveJustDirectory): Make sure we don't pass NULL or "" as a path name to Win32 API functions since this was crashing under Windows 98. | ||||
* | * Bumped tcltest to 2.0.2 | dgp | 2002-03-11 | 3 | -3/+8 |
| | |||||
* | * library/tcltest/tcltest.tcl (getMatchingFiles): Pass | mdejong | 2002-03-11 | 2 | -3/+10 |
| | | | | | a proper list to foreach to avoid munging a Windows patch like D:\Foo\Bar into D:FooBar before the glob. | ||||
* | * generic/tclEncoding.c: Fix typo in comment. | mdejong | 2002-03-11 | 3 | -18/+29 |
| | | | | | | | | * generic/tclIO.c (DoReadChars, ReadBytes, ReadChars): Use NULL value instead of pointer set to NULL to make things more clear. Reorder arguments so that they match the function signatures. Cleanup little typos and add more descriptive comment. | ||||
* | Formatting error in .AP macro | dgp | 2002-03-09 | 1 | -2/+2 |
| | |||||
* | * win/README: Update to indicate that Mingw 1.1 is | mdejong | 2002-03-09 | 2 | -13/+36 |
| | | | | | | required to build Tcl. Add section describing new msys based build process. Update Cygwin build instructions so users know where to find Mingw 1.1. | ||||
* | (DoCopyFile): correctly set retval to TCL_OK | hobbs | 2002-03-08 | 2 | -2/+6 |
| | |||||
* | * win/tclWin32Dll.c (TclpCheckStackSpace): | mdejong | 2002-03-08 | 3 | -14/+42 |
| | | | | | | | * win/tclWinFCmd.c (DoRenameFile, DoCopyFile): Replace hard coded constants with Win32 symbolic names. Move control flow statements out of __try blocks since the documentation indicates it is frowned upon. | ||||
* | * Added the [interp recursionlimit] command to | dgp | 2002-03-07 | 5 | -79/+662 |
| | | | | | set/query the recursion limit of an interpreter. Proposal and implementation from Stephen Trier. [TIP 87, Patch 522849] | ||||
* | Bumped patchlevel; might need changing in the future, but it makes life | dkf | 2002-03-06 | 8 | -14/+22 |
| | | | | easier for now. | ||||
* | tclInt.h: restoring correct operation ordering in TclDecrRefCount | Miguel Sofer | 2002-03-06 | 2 | -13/+19 |
| | | | | macro [Bug 524802] | ||||
* | TIP#81 implementation, tests and docs | dkf | 2002-03-06 | 4 | -169/+399 |
| | |||||
* | adjust 8.4a4 release tagcore_8_4_a4 | hobbs | 2002-03-05 | 1 | -1/+13 |
| | |||||
* | * unix/tclUnixChan.c: initial remedy for [Bug #525783] flush | hobbs | 2002-03-05 | 1 | -4/+23 |
| | | | | | | problem introduced by TIP #35. This may not satisfy true serial channels, but it restores the correct flushing of std* channels on exit. | ||||
* | fixed URL refs | hobbs | 2002-03-05 | 2 | -5/+5 |
| | |||||
* | added --enable-langinfo doc | hobbs | 2002-03-05 | 1 | -1/+6 |
| | |||||
* | Also added the MSVC++ project files to dist target. I prefer not to use them, | davygrvy | 2002-03-05 | 1 | -1/+3 |
| | | | | but people might find them convenient. | ||||
* | Added win/rules.vc and win/coffbase.txt to dist target needed by makefile.vc | davygrvy | 2002-03-05 | 1 | -1/+6 |
| | |||||
* | Removed out-of-date reference to patches. | dgp | 2002-03-05 | 1 | -10/+8 |
| | |||||
* | 8.4a4 tagged for release | hobbs | 2002-03-04 | 1 | -0/+11 |
| | |||||
* | updated to use www.tcl.tk URL | hobbs | 2002-03-04 | 5 | -27/+27 |
| | |||||
* | added older ChangeLogs to dist target | hobbs | 2002-03-04 | 1 | -2/+3 |
| | |||||
* | update for 8.4a4 docs | hobbs | 2002-03-04 | 1 | -0/+10 |
| | |||||
* | updated changes | hobbs | 2002-03-04 | 1 | -23/+32 |
| | |||||
* | * tests/io.test: | hobbs | 2002-03-04 | 4 | -23/+82 |
| | | | | | | | | | * tests/encoding.test: corrected iso2022 encoding results. added encoding-24.* * generic/tclEncoding.c (EscapeFromUtfProc): corrected output of escape codes as per RFC 1468. [Patch #474358] (taguchi) (TclFinalizeEncodingSubsystem): corrected potential double-free when encodings were finalized on exit. [Bug #219314, #524674] | ||||
* | corrected iso2022 return encoding escape | hobbs | 2002-03-02 | 1 | -2/+2 |
| | |||||
* | * tests/encoding.test: added encoding-23.* tests | hobbs | 2002-03-02 | 3 | -24/+100 |
| | | | | | | | * generic/tclIO.c (FilterInputBytes): reset the TCL_ENCODING_START flags in the ChannelState when using 'gets'. [Bug #523988] Also reduced the value of ENCODING_LINESIZE from 30 to 20 as this seems to improve the performance of 'gets' according to tclbench. | ||||
* | * library/encoding/iso2022-jp.enc: | hobbs | 2002-03-02 | 4 | -8/+4 |
| | | | | | | | * library/encoding/iso2022.enc: * tools/encoding/iso2022-jp.esc: * tools/encoding/iso2022.esc: gave <ESC>$B precedence over <ESC>$@, based on comments (point 1) in [Bug #219283] (rfc 1468) | ||||
* | updated changes file for 8.4a4 release | dgp | 2002-03-01 | 1 | -2/+30 |
| | |||||
* | see ChangeLog | hobbs | 2002-03-01 | 1 | -0/+11 |
| | |||||
* | couple extra tests | hobbs | 2002-03-01 | 1 | -1/+11 |
| | |||||
* | * generic/tclCmdMZ.c (TraceCommandProc): ensure that TraceCommandInfo | hobbs | 2002-03-01 | 1 | -2/+6 |
| | | | | | structure was also deleted when a command was deleted to prevent a mem leak. | ||||
* | * generic/tclBasic.c (Tcl_CreateObjTrace): set tracePtr->flags ↵ | hobbs | 2002-03-01 | 1 | -1/+2 |
| | | | | correctly. |