summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Regen with autoconf 2.61Miguel Sofer2007-07-313-7582/+8331
|
* * unix/configure.in: allow use of 'inline' in Tcl sourcesMiguel Sofer2007-07-314-4/+12
| | | | | * win/configure.in: [Patch 1754128] * win/makefile.vc:
* Whitespace/format cleanupdkf2007-07-312-64/+61
|
* Added missing bug number. ;-)dkf2007-07-311-1/+1
|
* * unix/tclUnixInit.c (TclpSetVariables): Use the thread-safe getpwuiddkf2007-07-312-15/+25
| | | | | replacement to fill the tcl_platform(user) field as it is not subject to spoofing.
* Simplify the #ifdef logic.dkf2007-07-312-334/+398
|
* One more bad change spotted by AKudkf2007-07-311-2/+2
|
* Fix test failures.dkf2007-07-312-2/+6
|
* Added macros to make bit chopping clearerdkf2007-07-302-183/+198
|
* fix wrong TIP # in ChangelogMiguel Sofer2007-07-241-1/+1
|
* comment fixMiguel Sofer2007-07-241-3/+2
|
* changelog completionMiguel Sofer2007-07-241-1/+4
|
* * generic/tclBasic.c (TEOvI, GetCommandSource):Miguel Sofer2007-07-245-73/+80
| | | | | | | | | | * generic/tclExecute.c (TEBC, TclGetSrcInfoForCmd): * generic/tclInt.h: * generic/tclTrace.c (TclCheck(Interp|Execution)Traces): Removed the need for TEBC to inspect the command before calling TEOvI, leveraging the TIP 282 infrastructure. Moved the generation of a correct nul-terminated command string away from the trace code, back into TEOvI/GetCommandSource.
* * library/platform/platform.tcl: Fixed bug in 'platform::patterns'andreas_kupries2007-07-207-25/+41
| | | | | | | | | * library/platform/pkgIndex.tcl: where identifiers not matching * unix/Makefile.in: the special linux and solaris forms would not * win/Makefile.in: get 'tcl' as an acceptable platform added to * doc/platform.n: the result. Bumped package to version 1.0.3 and * doc/platform_shell.n: updated documentation and Makefiles. Also fixed bad version info in the documentation of platform::shell.
* * generic/tclParse.c: In contexts where interp and parsePtr->interpdgp2007-07-192-20/+27
| | | | | | might be different, be sure to use the latter for error reporting. Also pulled the interp argument back out of ParseTokens() since we already had a parsePtr->interp to work with.
* * generic/tclCompExpr.c: Removed unused arguments and variables.dgp2007-07-182-43/+29
|
* typodgp2007-07-171-2/+2
|
* * generic/tclCompExpr.c (ParseExpr): While adding comments todgp2007-07-172-202/+258
| | | | | | explain the operations of ParseExpr(), made significant revisions to the code so it would be easier to explain, and in the process made the code simpler and clearer as well.
* * generic/tclCompExpr.c: More commentary.dgp2007-07-163-7/+126
| | | | | | * tests/parseExpr.test: Several tests of syntax error messages to check that when expression substrings are truncated they leave visible the context relevant to the reported error.
* additional commentarydgp2007-07-121-6/+25
|
* * generic/tclCompExpr.c: Factored out, corrected, and commenteddgp2007-07-122-44/+48
| | | | common code for reporting syntax errors in LEAF elements.
* 2007-07-11 Miguel Sofer <msofer@users.sf.net>Miguel Sofer2007-07-113-15/+36
| | | | | | | | * generic/tclCompCmds.c (TclCompileWhileCmd): * generic/tclCompile.c (TclCompileScript): Corrected faulty avoidance of INST_START_CMD when the first opcode in a script is within a loop (as produced by 'while 1'), so that the corresponding command is properly counted [Bug 1752146].
* * generic/tclCompExpr.c: Added a "parseOnly" flag argument todgp2007-07-112-49/+41
| | | | | | | | | | | ParseExpr() to indicate whether the caller is Tcl_ParseExpr(), with an end goal of filling a Tcl_Parse with Tcl_Tokens representing the parsed expression, or TclCompileExpr() with the goal of compiling and executing the expression. In the latter case, more aggressive conversion of QUOTED and BRACED lexeme to literals is done. In the former case, all such conversion is avoided, since Tcl_Token production would revert it anyway. This enables simplifications to the GenerateTokensForLiteral() routine as well.
* Renamed some variables fordgp2007-07-102-47/+117
| | | | clarity and replaced some cryptic logic with more readable macros.
* Removed some unused counter variables.dgp2007-07-102-6/+18
|
* * generic/tclCompExpr.c: Added a field for operator precedencedgp2007-07-102-40/+174
| | | | | | | | to be stored directly in the parse tree. There's no memory cost to this addition, since that memory would have been lost to alignment issues anyway. Also, converted precedence definitions and lookup tables to use symbolic constants instead of raw number for improved readability, and continued extending/improving/correcting comments.
* More extended commentary about the data structures of the expr parser.dgp2007-07-091-43/+85
|
* * generic/tclCompExpr.c: Revision so that the END lexeme neverdgp2007-07-092-4/+38
| | | | | | | gets inserted into the parse tree. Later tree traversal never reaches it since its location in the tree is not variable. Starting and stopping with the START lexeme (node 0) is sufficient. Also finished lexeme code commentary.
* * generic/tclCompExpr.c: Added missing creation and returndgp2007-07-092-2/+16
| | | | of the Tcl_Parse fields that indicate error conditions. [Bug 1749987]
* More work in progress commenting the expr parserdgp2007-07-051-10/+55
|
* Start of work adding more useful comments to the expr parser.dgp2007-07-051-20/+63
|
* * library/init.tcl (unknown): Corrected inconsistent error messagedgp2007-07-052-13/+16
| | | | in interactive [unknown] when empty command is invoked. [Bug 1743676]
* clarify comments for last commitMiguel Sofer2007-07-052-4/+4
|
* * generic/tclNamesp.c (SetNsNameFromAny):Miguel Sofer2007-07-053-42/+66
| | | | | * generic/tclObj.c (SetCmdNameFromAny): Avoid unnecessary ckfree/ckalloc when the old structs can be reused.
* * generic/tclNamesp.c: Fix case where a FQ cmd or ns was beingMiguel Sofer2007-07-043-2/+10
| | | | | * generic/tclObj.c: cached in a different interp, tkcon [Bug 1747512]
* Remove over-wide lines from nroff output.dkf2007-07-043-26/+43
|
* Remove over-wide lines from nroff output.dkf2007-07-047-56/+117
|
* Fixing some minor nroff misusesdkf2007-07-044-71/+59
|
* Minor formatting fixes and additional notes on portability of [file]dkf2007-07-042-13/+10
|
* Minor fixes (type of heading, format of SEE ALSO) and added KEYWORDSdkf2007-07-041-3/+5
|
* * generic/tclCompExpr.c: Revised #define values so that theredgp2007-07-032-4/+17
| | | | is now more expansion room to define more BINARY operators.
* Minor *roff usage fixesdkf2007-07-031-1/+4
|
* * generic/tcl.h: Removed TCL_PRESERVE_BINARY_COMPATIBILITY anddgp2007-07-024-128/+21
| | | | | | | | * generic/tclHash.c: any code enabled when it is set to 0. We will * generic/tclStubInit.c: always want to preserve binary compat of the structs that appear in the interface through the 8.* series of releases, so it's pointless to drag around this never-enabled alternative.
* Simplify string hashing a little. [FRQ 951168]dkf2007-07-022-16/+11
|
* * generic/tclIO.c: Removed dead code.dgp2007-07-023-84/+5
| | | | * unix/tclUnixChan.c:
* * generic/tclCompExpr.c: Removed dead code, old implementationsdgp2007-07-021-30/+1
| | | | | * generic/tclEvent.c: of expr parsing and compiling, including the * generic/tclInt.h: routine TclFinalizeCompilation().
* * generic/tclCompExpr.c: Removed dead code, old implementationsdgp2007-07-024-1490/+56
| | | | | * generic/tclEvent.c: of expr parsing and compiling, including the * generic/tclInt.h: routine TclFinalizeCompilation().
* fix typo ... donal broke the buildMiguel Sofer2007-07-011-2/+2
|
* Plug a memory leak caused by a missing Tcl_DecrRefCount on an error path. ↵dkf2007-06-302-32/+39
| | | | [Bug 1717186]
* Prevent RemeberSyncObj() from growing the syncvasiljevic2007-06-302-4/+22
| | | | | object lists by reusing already free'd slots, if possible. See discussion on Bug 1726873 for more information.