summaryrefslogtreecommitdiffstats
path: root/generic/tclUtil.c
Commit message (Collapse)AuthorAgeFilesLines
* [16896d49fd] Tcl_DStrings should tolerate appends to self.dgp2016-06-221-0/+24
|\
| * [16896d49fd] Tcl_DStrings should tolerate appends to self.dgp2016-06-221-0/+24
| |
* | [40f628e8e3] Tcl_ListObjReplace() callers need to handle TCL_ERROR.dgp2015-11-201-1/+6
|\ \ | |/
| * [40f628e8e3] Tcl_ListObjReplace() callers need to handle TCL_ERROR.dgp2015-11-201-1/+7
| |
* | Eliminate unnessessary end-of-line spacing. No functional change.jan.nijtmans2015-10-041-24/+24
|\ \ | |/
| * Eliminate unnessessary end-of-line spacing. No functional change.jan.nijtmans2015-10-041-25/+25
| |
| * Fix more corner-cases like ↵jan.nijtmans2014-05-011-1/+1
| | | | | | | | [0e92c404f19ede5b2eb06e6db27647d3138cc56|0e92c404f1]: The only place where a type of &tclByteArrayType can be trusted is when determining its length, because the character length of a (UTF-8) string is always equal to the byte length of the byte array.
* | mark function return as unused, to avoid confusing CoverityMiguel Sofer2015-08-051-1/+1
| |
* | [84af1192f5]: [regsub] compiler no longer confused by quantification handling.dkf2014-09-091-1/+8
| |
* | Improved the error messages. dkf2014-06-071-20/+85
| | | | | | | | We do not want parsing an invalid dictionary to give errors about lists! As compensation, we get greater precision in the errorcode.
* | put the other definition of a trim set in the header file toodkf2013-12-301-6/+10
| |
* | Fix 3 trivial (possible) errors, discovered by covertity.comjan.nijtmans2013-09-041-2/+1
| |
* | speling ficksdgp2013-01-031-2/+2
|\ \ | |/
| * speling ficksdgp2013-01-031-2/+2
| |
| * Remove surplus parensdgp2012-07-191-1/+1
| |
* | Stop leaking allocated space when objifying a zero-length DString. [Bug ↵ferrieux2012-12-221-8/+10
| | | | | | | | 3598150] spotted by afredd.
* | Minor changes to improve style (C89 declarations, consistent indentation,dkf2012-08-071-323/+480
| | | | | | | | clarification of #endifs, reduction of unnecessary casts, use of array syntax for reading array elements, etc.)
* | converting to using Tcl_Obj API for error message generation; part donedkf2012-08-031-24/+16
| |
* | Fix mostly-harmless minor buffer overrun.dkf2012-07-161-2/+2
| |
* | Factor out a number of common patterns of use of Tcl_DStringAppend.dkf2012-07-031-3/+34
| |
* | * generic/tclUtil.c (TclDStringToObj): Added internal function to makedkf2012-04-251-0/+58
| | | | | | | | the fairly-common operation of converting a DString into an Obj a more efficient one.
* | Reduce amount of unreachable code. Refactor Win socket and load code to be lessdkf2012-04-051-11/+0
| | | | | | baroque in its internals.
* | Refactor TclScanElement() part of list parsing to take advantage of tablesdgp2012-03-071-15/+18
| | | | | | | | | | constructed for the task of script parsing. Ought to speed generation of string representation of lists, though the effect is likely only noticeable on long lists made up primarily of simple elements (not needing quoting).
* | 3390638 Workaround broken solaris studio cc optimizer.dgp2011-09-131-1/+2
|\ \ | |/ | | Thanks to Wolfgang S. Kechel.
| * 3390638 Workaround broken solaris studio cc optimizer.dgp2011-09-131-1/+2
| |\ | | | | | | Thanks to Wolfgang S. Kechel.
| | * 3390638 Workaround broken solaris studio cc optimizer.dgp2011-09-131-1/+2
| | | | | | | | | Thanks to Wolfgang S. Kechel.
* | | 3371644 Repair failure to properly handle (length == -1) in TclConvertElement().dgp2011-07-191-3/+1
|\ \ \ | |/ /
| * | 3371644 Repair failure to properly handle (length == -1) in TclConvertElement().dgp2011-07-191-1/+1
| | |
* | | Fix [bug 3371644] -- crash on Tcl_ConvertElement with leading pound.ferrieux2011-07-191-1/+3
| | |
* | | Revised fix for bug 3309871dgp2011-06-011-2/+2
|\ \ \ | |/ /
| * | Revised fix for bug 3309871dgp2011-06-011-2/+2
| | |
* | | fix for [Bug 3309871]: Valgrind finds: invalid read in TclMaxListLength()jan.nijtmans2011-06-011-2/+2
|\ \ \ | |/ /
| * | fix for [Bug 3309871]: Valgrind finds: invalid read in TclMaxListLength()jan.nijtmans2011-06-011-2/+2
| | |
* | | Rewind from a refactoring that veered into the weeds.bug_3293874dgp2011-05-311-19/+4
|\ \ \
* | | | First draft of bug fix.dgp2011-05-111-2/+2
|/ / /
* | | New internal routines TclScanElement() and TclConvertElement().dgp2011-05-101-227/+722
|\ \ \ | |/ / | | | Rewritten guts of machinery to produce string rep of lists. [Bug 3173086]
| * | Completed patch with mucho comments. Merge 8.5.bug_3173086dgp2011-05-101-321/+744
| | |
| * | merge trunk + partial improvements to commentsdgp2011-03-071-40/+76
| | |
| * | Correct flaw in the rewrite handling [list \\\\\}].dgp2011-03-031-1/+1
| | |
| * | Significant rewrite of the Tcl*(Scan|Convert)*Element() system, and revisionsdgp2011-03-031-183/+314
| | | | | | | | | | | | to the callers. Needs more work on comments, and testing to check for any performance impact in either direction. Fixes reported bug.
| * | Simplified the logic of the Scan/Convert pair of routines for generating dgp2011-03-031-21/+5
| | | | | | | | | string reps of lists to stop using the unnecessary flag BRACES_UNMATCHED.
* | | merge 8.5dgp2011-05-031-3/+2
|\ \ \
| * | | Tighten Tcl_SplitList().dgp2011-05-031-2/+1
| | | |
| * | | Tighten SetDictFromAny().dgp2011-05-031-1/+1
| | | |
* | | | Revised TclFindElement() interface.dgp2011-05-021-10/+30
|\ \ \ \ | |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The final argument had been bracePtr, the address of a boolean var, where the caller can be told whether or not the parsed list element was enclosed in braces. In practice, no callers really care about that. What the callers really want to know is whether the list element value exists as a literal substring of the string being parsed, or whether a call to TclCopyAndCollpase() is needed to produce the list element value. Now the final argument is changed to do what callers actually need. This is a better fit for the calls in tclParse.c, where now a good deal of post-processing checking for "naked backslashes" is no longer necessary. ***POTENTIAL INCOMPATIBILITY*** For any callers calling in via the internal stubs table who really do use the final argument explicitly to check for the enclosing brace scenario. Simply looking for the braces where they must be is the revision available to those callers, and it will backport cleanly. Tests for expanded literals quoting detection.
| * | | Revised TclFindElement() interface.dgp2011-05-021-10/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The final argument had been bracePtr, the address of a boolean var, where the caller can be told whether or not the parsed list element was enclosed in braces. In practice, no callers really care about that. What the callers really want to know is whether the list element value exists as a literal substring of the string being parsed, or whether a call to TclCopyAndCollpase() is needed to produce the list element value. Now the final argument is changed to do what callers actually need. This is a better fit for the calls in tclParse.c, where now a good deal of post-processing checking for "naked backslashes" is no longer necessary. ***POTENTIAL INCOMPATIBILITY*** For any callers calling in via the internal stubs table who really do use the final argument explicitly to check for the enclosing brace scenario. Simply looking for the braces where they must be is the revision available to those callers, and it will backport cleanly.
* | | | Replace TclCountSpaceRuns() with TclMaxListLength() which is the function wedgp2011-05-021-9/+30
|\ \ \ \ | |/ / / | | | | actually want.
| * | | Replace TclCountSpaceRuns() with TclMaxListLength() which is the function wedgp2011-05-021-9/+30
| | | | | | | | | | | | actually want.
* | | | More isspace() callers.dgp2011-04-281-5/+5
|\ \ \ \ | |/ / /
| * | | More isspace() callers.dgp2011-04-281-5/+5
| | | |