summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Changed all the Tcl_Platform* symbols to TclOS*; they weren't public so theirdkf2002-06-287-73/+93
| | | | names were really badly chosen. Also prevented a double-#def.
* Minor improvement to documentation for [string last], and reformatting todkf2002-06-282-151/+123
| | | | remove long-obsolete changebars.
* * Work in progress updating the documentation of the packages thatdgp2002-06-276-99/+90
| | | | come bundled with the Tcl source distribution, notably tcltest.
* * Made sure that the TCLTEST_OPTIONSdgp2002-06-272-39/+52
| | | | environment variablle configures tcltest at package load time.
* unix root volume fixvincentdarley2002-06-273-3/+21
|
* empty path name error msgsvincentdarley2002-06-263-2/+159
|
* * unix/tclUnixTime.c: Make [clock format] respect locale settings.rmax2002-06-263-2/+11
| | | | * tests/clock.test: Bug #565880. ***POTENTIAL INCOMPATIBILITY***
* Fixed a typo in the "shell" target.rmax2002-06-261-2/+2
|
* clarifications in doc/CrtInterp.3 and doc/StringObj.3Miguel Sofer2002-06-263-6/+21
|
* * Corrected suppression of -verbose skip and start by [test -output].dgp2002-06-263-19/+56
| | | | | Also corrected test suite errors exposed by corrected code. [Bug 564656]
* typo fixesdgp2002-06-261-4/+4
|
* Excised a tiny amount of the most pointless voodoo. Leftdgp2002-06-261-4/+4
| | | | most of it in there.
* generatedrmax2002-06-251-1668/+1471
|
* Some more fixes for the compress and symlink stuff to correct situationsrmax2002-06-251-8/+7
| | | | | where compressed manpages are being installed over uncompressed or vice versa.
* * unix/tcl.m4: New macro SC_CONFIG_MANPAGES.rmax2002-06-258-1586/+2506
| | | | | | | | | | | * unix/configure.in: Added support for symlinks and compression * unix/Makefile.in: when installing the manpages. [Patch 518052] * unix/mkLinks.tcl: Default is still hardlinks and no compression. * unix/mkLinks: generated * unix/configure: * unix/README: Added documentation for the new features.
* * unix/tcl.m4 (SC_PATH_TCLCONFIG): Replaced ${exec_prefix}/lib byrmax2002-06-252-2/+7
| | | | ${libdir}.
* Surface fix for bug #533364; TclGetIntForIndex no longer assumes an unshareddkf2002-06-252-4/+22
| | | | empty result when generating an error message.
* * Implementation of TIP 101. Adds and exports a [configure] commanddgp2002-06-254-848/+749
| | | | from tcltest.
* * updated changes file for 8.4b1 release.dgp2002-06-222-1/+106
|
* * Corrections to tcltest and the Tcl test suite so that a testdgp2002-06-2223-79/+108
| | | | | | | with options -constraints knownBug -limitConstraints 1 only tests the knownBug tests. Mostly involves replacing direct access to the testConstraints array with calls to the testConstraint command (which requires tcltest version 2).
* Regendkf2002-06-221-1/+1
|
* Regen.dkf2002-06-221-1/+1
|
* Resynch...dkf2002-06-221-3/+3
|
* Bumped version number to b1 in preparation for release.dkf2002-06-218-16/+22
|
* * Updated all package install directories to match current Major.minordgp2002-06-215-26/+37
| | | | | versions of the packages. Added tcltest package to installation on Windows.
* LogSyntaxError() should reset the interpreter resultjenglish2002-06-213-2/+11
| | | | [Bug 550142 "Tcl_ExprObj -> abort"]
* * Corrected comments and namespace styledgp2002-06-212-48/+52
| | | | issues. Thanks to Bruce Stephens. [Bug 572025]
* tip99tip_99vincentdarley2002-06-211-6/+6
|
* tip99vincentdarley2002-06-2115-246/+594
|
* fix for [Bug 571385]Miguel Sofer2002-06-202-9/+18
|
* * generic/tclExecute.c (TclCompEvalObj): clarified and simplified theMiguel Sofer2002-06-202-49/+44
| | | | logic for compilation/recompilation.
* doc/file.n: Fixed indentation. No substantive changes.jenglish2002-06-202-6/+11
|
* Added parens for claritydgp2002-06-202-5/+6
|
* * generic/tclCmdMZ.c (Tcl_RegexpObjCmd): get the resultPtr againhobbs2002-06-192-1/+10
| | | | | as the Tcl_ObjSetVar2 may cause the result to change. [Patch #558324] (watson)
* generic/tclExecute.c (TEBC): removing unused "for(;;)" loop; improvedMiguel Sofer2002-06-192-2581/+2567
| | | | comments; re-indentation.
* * generic/tclExecute.c (TEBC): elimination of duplicated code in theMiguel Sofer2002-06-182-545/+435
| | | | | | non-immediate INST_INCR instructions; elimination of 103 (!) TclDecrRefCount macros. The different instructions now jump back to a common "DecrRefCount zone" at the topof the loop.
* generic/tclExecute.c (TEBC, INST_DONE): small bug in the panic codeMiguel Sofer2002-06-182-1/+7
| | | | for tcl-stack corruption.
* no messagedavygrvy2002-06-181-0/+12
|
* Trims to support the removal of RESOURCE_INCLUDED from rcdavygrvy2002-06-183-19/+15
| | | | | | | | | | | scripts from FR #565088. * generic/tcl.h: moved the #ifndef RC_INVOKED start block up in the file. rc scripts don't need to know thread mutexes. * win/tcl.rc: * win/tclsh.rc: removed the #define RESOURCE_INCLUDED to let the built-in -DRC_INVOKED to the work.
* * doc/CrtTrace.3: Added TIP#62 implementation of commandhobbs2002-06-1715-196/+1530
| | | | | | | | | | | | | | | * doc/trace.n: execution tracing [FR #462580] (lavana). * generic/tcl.h: This includes enter/leave tracing as well * generic/tclBasic.c: as inter-procedure stepping. * generic/tclCmdMZ.c: * generic/tclCompile.c: * generic/tclExecute.c: * generic/tclInt.decls: * generic/tclInt.h: * generic/tclIntDecls.h: * generic/tclStubInit.c: * generic/tclVar.c: * tests/trace.test:
* * Corrected en_UK references to en_GB. UK is notdgp2002-06-172-6/+10
| | | | a country designation recognized in ISO 3166.
* * win/tclWinPipe.c (BuildCommandLine): Fixed bug #554068 ([exec]andreas_kupries2002-06-173-2/+24
| | | | | | on windows did not treat { in filenames well.). Bug reported by Vince Darley <vincentdarley@users.sourceforge.net>, patch provided by Vince too.
* generic/tcl.h: #ifdef logic for K&R C backwards compatibilityjenglish2002-06-172-78/+53
| | | | | changed to assume modern C by default. See SF FR #565088 for full details.
* * More Windows Registry locale codes from Bruno Haible.dgp2002-06-172-15/+130
|
* * Revised locale initialization to interpretdgp2002-06-175-480/+692
| | | | | | | | | environment variable locale values according to XPG4, and to recognize the LC_ALL and LC_MESSAGES values over that of LANG. Also added many Windows Registry locale values to those recognized by msgcat. Revised tests and docs. Bumped to version 1.3. Thanks to Bruno Haible for the report and assistance crafting the solution. [Bug 525522, 525525]
* a better algorithm for the previous bug fix.Miguel Sofer2002-06-172-29/+28
|
* [Bug 569438] in the processing of dollar variablesMiguel Sofer2002-06-163-14/+44
|
* bug in the consolidation of the INCR_..._STK instructionsMiguel Sofer2002-06-162-2/+10
|
* runtime peep-hole optimisation of variables (INST_STORE, INST_INCR)Miguel Sofer2002-06-142-10/+51
| | | | and commands (INST_INVOKE); faster check for the existence of a catch.
* runtime peep-hole optimisation of comparisons.Miguel Sofer2002-06-142-17/+48
|