summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Clean targets made Win9x complient.davygrvy2002-03-273-37/+19
|
* no messagedavygrvy2002-03-271-1/+2
|
* Formatting mistake in Changelog entry (2002-02-28)Miguel Sofer2002-03-271-1/+1
|
* * win/.cvsignore:davygrvy2002-03-276-167/+513
| | | | | | | | | | | | | | | | | * win/buildall.vc.bat: * win/coffbase.txt: * win/makefile.vc: * win/nmakehlp.c (new): * win/rules.vc: First draft fix for [Bug 527941]. More changes need to done to the makehelp target to get to stop leaving build files in the tools/ directory. This does not address the syntax errors in the man files. Having the contents of tcl.hpj(.in) inside makefile.vc allows for version numbers to be replaced with macros. The new nmakehlp.c is built by rules.vc in preprocessing and removes the need to use tricky shell syntax that wasn't compatible on Win9x systems. This is a first draft repair for [Bug 533862].
* no messagedavygrvy2002-03-271-0/+18
|
* passing the correct commandSize to TclEvalObjvInternal. [Bug 219362],Miguel Sofer2002-03-272-2/+8
| | | | fix by David Knoll.
* avoid exceptional returns at level 0 [Bug 219181]Miguel Sofer2002-03-273-2/+32
|
* * Major code cleanup to deal with whitespace,dgp2002-03-274-1343/+1221
| | | | | coding conventions, and namespace issues, with several minor bugs fixed in the process.
* * Added missing [after cancel]s.dgp2002-03-272-3/+9
|
* * More initialization fixes to avoid stomping on global variablesdgp2002-03-251-19/+15
|
* More variable initialization fixes.dgp2002-03-251-53/+38
|
* * Corrected faulty variable initialization. [Bug 534845]dgp2002-03-252-110/+48
|
* * Removed workarounds for Bug 495977.dgp2002-03-252-63/+185
|
* * Improve the processing of the -constraints option to [test] so thatdgp2002-03-252-3/+6
| | | | | constraint lists can have arbitrary whitespace, and non-lists don't blow things up. [Bug 495977]
* * Keep the value of $::auto_pathdgp2002-03-252-4/+8
| | | | | | unchanged, so that the tcltest package can test code that depends on auto-loading. If a testing application needs $::auto_path pruned, it should do that itself. [Bug 495726]
* Allow NULL callback on trace deletions [Bug 534728]Miguel Sofer2002-03-253-4/+12
|
* fix for [Bug 533907] in tclBasic.c (Tcl_EvalObjv).Miguel Sofer2002-03-242-27/+39
|
* * Use [interpreter] to set/query thedgp2002-03-242-10/+13
| | | | executable currently running the tcltest package. [Bug 454050]
* fixed typo and compiler warning in last commit; all tests now pass on unixvincentdarley2002-03-243-5/+5
|
* * Allow non-proc commands to be useddgp2002-03-242-6/+11
| | | | as the customization hooks. [Bug 495662]
* fs testsvincentdarley2002-03-241-1/+3
|
* fs testsvincentdarley2002-03-241-1/+1
|
* 4 fs fixesvincentdarley2002-03-2419-791/+1348
|
* adding test for [Bug 533758], fixed earlier today.Miguel Sofer2002-03-232-3/+30
|
* win/tclWinInt.h: moved undef of TCL_STORAGE_CLASS. [Bug #478579]hobbs2002-03-222-3/+7
|
* fixed the errorInfo for return codes other than (TCL_OK, TCL_ERROR) toMiguel Sofer2002-03-223-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]dkf2002-03-212-3/+9
|
* Added Patch numberdgp2002-03-201-0/+1
|
* * Updated interfaces of generic/tclVar.c accordingdgp2002-03-2015-80/+108
| | | | to TIP 27. In particular, the "part2" arguments were CONSTified.
* Fixed buffer overrun reported in 530320; luckily it is not likely todkf2002-03-153-4/+18
| | | | | be exploitable in any meaningful way, but crashing Tcl instead of triggering an error still isn't good.
* * win/configure: Regen.mdejong2002-03-156-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): Handlemdejong2002-03-142-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,mdejong2002-03-122-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.2dgp2002-03-113-3/+8
|
* * library/tcltest/tcltest.tcl (getMatchingFiles): Passmdejong2002-03-112-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.mdejong2002-03-113-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 macrodgp2002-03-091-2/+2
|
* * win/README: Update to indicate that Mingw 1.1 ismdejong2002-03-092-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_OKhobbs2002-03-082-2/+6
|
* * win/tclWin32Dll.c (TclpCheckStackSpace):mdejong2002-03-083-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 todgp2002-03-075-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 lifedkf2002-03-068-14/+22
| | | | easier for now.
* tclInt.h: restoring correct operation ordering in TclDecrRefCountMiguel Sofer2002-03-062-13/+19
| | | | macro [Bug 524802]
* TIP#81 implementation, tests and docsdkf2002-03-064-169/+399
|
* adjust 8.4a4 release tagcore_8_4_a4hobbs2002-03-051-1/+13
|
* * unix/tclUnixChan.c: initial remedy for [Bug #525783] flushhobbs2002-03-051-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 refshobbs2002-03-052-5/+5
|
* added --enable-langinfo dochobbs2002-03-051-1/+6
|
* Also added the MSVC++ project files to dist target. I prefer not to use them,davygrvy2002-03-051-1/+3
| | | | but people might find them convenient.
* Added win/rules.vc and win/coffbase.txt to dist target needed by makefile.vcdavygrvy2002-03-051-1/+6
|