| Commit message (Expand) | Author | Age | Files | Lines |
* | * generic/tclStringObj.c: Several revisions to the shimmering | dgp | 2009-02-22 | 1 | -17/+65 |
|
|
* | alternative solution to the signed/unsigned warnings | dgp | 2009-02-19 | 1 | -5/+5 |
|
|
* | fix signed/unsigned comparison warnings | das | 2009-02-19 | 1 | -4/+4 |
|
|
* | * generic/tclStringObj.c: Simplify the logic of the | dgp | 2009-02-18 | 1 | -66/+31 |
|
|
* | another TODO | dgp | 2009-02-18 | 1 | -1/+2 |
|
|
* | * generic/tclStringObj.c: Rewrite GrowStringBuffer() so that it | dgp | 2009-02-18 | 1 | -16/+23 |
|
|
* | * generic/tclStringObj.c: Another round of simplification on | dgp | 2009-02-18 | 1 | -21/+21 |
|
|
* | * generic/tclStringObj.c: Another round of simplification on | dgp | 2009-02-18 | 1 | -29/+25 |
|
|
* | * generic/tclStringObj.c: Pare back the length of the unicode | dgp | 2009-02-17 | 1 | -12/+10 |
|
|
* | * generic/tclStringObj.c: Factor out common GrowUnicodeBuffer() | dgp | 2009-02-17 | 1 | -44/+51 |
|
|
* | * generic/tclStringObj.c: Factor out common GrowStringBuffer(). | dgp | 2009-02-17 | 1 | -150/+47 |
|
|
* | * generic/tclStringObj.c: Revise buffer growth implementation | dgp | 2009-02-17 | 1 | -13/+32 |
|
|
* | * generic/tclStringObj.c: Added protections from invalid memory | dgp | 2009-02-16 | 1 | -4/+32 |
|
|
* | * generic/tclStringObj.c: Factor out duplicate code from | dgp | 2009-02-15 | 1 | -12/+4 |
|
|
* | * generic/tclStringObj.c: Replace the 'size_t uallocated' field | dgp | 2009-02-15 | 1 | -46/+42 |
|
|
* | * generic/tclStringObj.c: Removed limitation in | dgp | 2009-02-15 | 1 | -12/+7 |
|
|
* | * generic/tclStringObj.c: Revisions so that we avoid creating | dgp | 2009-02-14 | 1 | -51/+73 |
|
|
* | Remove all "register" keywords. | dgp | 2009-02-13 | 1 | -20/+20 |
|
|
* | New utility routine UnicodeLength(), to compute the length of unicode | dgp | 2009-02-13 | 1 | -23/+21 |
|
|
* | * generic/tclStringObj.c: Rewrites of the routines | dgp | 2009-02-13 | 1 | -152/+98 |
|
|
* | * generic/tclStringObj.c: Simplified Tcl_GetCharLength by | dgp | 2009-02-12 | 1 | -24/+25 |
|
|
* | * generic/tclStringObj.c: Re-implemented AppendUtfToUnicodeRep | dgp | 2009-02-12 | 1 | -32/+49 |
|
|
* | Revise latest commit to better maintain stringPtr->numChars. | dgp | 2009-02-12 | 1 | -8/+12 |
|
|
* | * generic/tclStringObj.c: Re-implemented AppendUnicodeToUtfRep | dgp | 2009-02-12 | 1 | -54/+79 |
|
|
* | Removed casts now unnecessary after type of stringPtr->allocated changed. | dgp | 2009-02-11 | 1 | -5/+5 |
|
|
* | * generic/tclStringObj.c: Changed type of the 'allocated' field | dgp | 2009-02-11 | 1 | -2/+2 |
|
|
* | - eliminate some unnessary type casts | nijtmans | 2009-02-10 | 1 | -3/+3 |
|
|
* | Removed handling of (objPtr->bytes != NULL) from UpdateStringOfString, | dgp | 2009-02-10 | 1 | -3/+1 |
|
|
* | Simplify Tcl_SetObjLength by removing unreachable code. | dgp | 2009-02-10 | 1 | -10/+3 |
|
|
* | Simplify SetStringFromAny() by removing unreachable and duplicate code. | dgp | 2009-02-10 | 1 | -25/+13 |
|
|
* | * generic/tclObj.c (Tcl_GetString): Added comments and validity | dgp | 2009-02-10 | 1 | -11/+4 |
|
|
* | Convert all Tcl_InvalidateStringRep() calls into macros. | dgp | 2009-02-10 | 1 | -7/+7 |
|
|
* | * generic/tclStringObj.c: Reduce code duplication in Tcl_GetUnicode*. | dgp | 2009-02-10 | 1 | -5/+3 |
|
|
* | * generic/tclStringObj.c (Tcl_GetUnicode*): Reduce code duplication. | dgp | 2009-02-10 | 1 | -25/+2 |
|
|
* | Add missing cast | dkf | 2009-02-05 | 1 | -2/+2 |
|
|
* | More/better/cleaner handling of the bytearray special casing for string ops. | dkf | 2009-02-05 | 1 | -14/+82 |
|
|
* | Improve efficiency of Tcl_AppendObjToObj's bytearray handling. | dkf | 2009-02-05 | 1 | -1/+30 |
|
|
* | comment typo | dgp | 2009-02-04 | 1 | -2/+2 |
|
|
* | * generic/tclStringObj.c: Added overflow protections to the | dgp | 2009-02-04 | 1 | -4/+14 |
|
|
* | * generic/tclStringObj.c (SetUnicodeObj): Corrected failure of | dgp | 2009-02-03 | 1 | -43/+28 |
|
|
* | * generic/tclStringObj.c (STRING_NOMEM): Add missing cast of | dgp | 2009-02-02 | 1 | -2/+3 |
|
|
* | * generic/tclStringObj.c (Tcl_(Attempt)SetObjLength): Added | dgp | 2009-02-02 | 1 | -1/+16 |
|
|
* | * generic/tclStringObj.c: New fix for [Bug 2494093] replaces the | dgp | 2009-01-21 | 1 | -24/+30 |
|
|
* | * generic/tclStringObj.c (STRING_SIZE): Corrected failure to limit | dgp | 2009-01-09 | 1 | -4/+7 |
|
|
* | * generic/tclStringObj.c (STRING_UALLOC): Added missing parens | dgp | 2009-01-08 | 1 | -2/+2 |
|
|
* | move variable "length" inside if() | nijtmans | 2008-12-17 | 1 | -2/+2 |
|
|
* | TIP #343 IMPLEMENTATION - A Binary Specifier for [format/scan] | ferrieux | 2008-12-10 | 1 | -5/+12 |
|
|
* | Style improvements - invoking callbacks without visual junk. | dkf | 2008-10-26 | 1 | -5/+4 |
|
|
* | Add "const" to many internal | nijtmans | 2008-10-16 | 1 | -2/+2 |
|
|
* | Add "const" to many internal | nijtmans | 2008-10-15 | 1 | -2/+2 |
|
|