summaryrefslogtreecommitdiffstats
path: root/generic
Commit message (Collapse)AuthorAgeFilesLines
* 3484402 Correct Off-By-One error appending unicode. Thanks to Poor Yorick.bug_3484402dgp2012-02-071-4/+4
| | | | Also converted some memcpy() to memmove() to reliably handle overlapping copies, and corrected test for when growth is needed.
* 3484621 Invalidate bytecode when exec traces are added/removed from compiled ↵dgp2012-02-061-1/+20
| | | | cmd.
* merge to feature branchrfe_3464401jan.nijtmans2012-01-269-601/+1214
|\
| * [Frq 3473670]: Various Unicode-related speedups/robustnessjan.nijtmans2012-01-223-327/+989
| |\
| | * merge trunkrfe_3473670jan.nijtmans2012-01-226-161/+797
| | |\ | | |/ | |/| | | | expand all unicode tables and tools to eventually handle the unicode chars > 0xffff (if UTF_MAX_CHAR > 3)
| * | [Bug-3474726] minGW Tcl_StatBuf not defined correctly in tcl.hjan.nijtmans2012-01-193-1/+11
| | |
| * | 3475667 Prevent buffer read overflow. Thanks to "sebres" for the report and fix.dgp2012-01-191-1/+1
| | |
| | * rfe-3473670: Various Unicode-related speedups/robustnessjan.nijtmans2012-01-142-169/+199
| |/
| * [Bug 3464428] string is graph \u0120 is wrongjan.nijtmans2012-01-094-274/+164
| |
* | [Frq 3464401] Support Unicode 6.1jan.nijtmans2011-12-262-847/+854
|/ | | (not to be merged until Unicode 6.1 is final!!!)
* [Bug 3464428] string is graph \u0120 is wrongjan.nijtmans2011-12-233-216/+88
|
* [Bug 3444754] string tolower \u01c5 is wrongjan.nijtmans2011-12-071-3/+4
|
* [Bug 2935503]: Windows: file mtime sets wrong timejan.nijtmans2011-11-222-0/+10
|
* Fix gcc warnings (discovered with latest mingw, based on gcc 4.6.1)jan.nijtmans2011-10-071-1/+1
|
* Don't change Tcl_UniChar type when TCL_UTF_MAX == 4 (not supported anyway)jan.nijtmans2011-09-162-2/+2
|
* 3390638 Workaround broken solaris studio cc optimizer.dgp2011-09-131-1/+2
| | | Thanks to Wolfgang S. Kechel.
* 3405652 Portability workaround for broken system DTrace support.dgp2011-09-131-8/+8
| | | Thanks to Dagobert Michelson.
* Tcl_HashStats does not return a CONSTjan.nijtmans2011-09-064-6/+5
|
* [Bug 3393714] overflow in toupper deltajan.nijtmans2011-08-181-28/+25
|
* A few more compiler warningsjan.nijtmans2011-08-181-1/+1
|
* [Bug 3388350] mingw64 compiler warningsjan.nijtmans2011-08-165-0/+5
| | | | n mingw, sys/stat.h must be included before winsock2.h, so make sure of that
* 3390272 Leak of [info script] value.dgp2011-08-151-0/+4
|
* [Bug 3388350] mingw64 compiler warningsjan.nijtmans2011-08-151-2/+2
|
* Avoid segfaults when RecordByteCodeStats() is called in a deleted interp.dgp2011-07-151-0/+5
|
* 3366265 Buffer allocated one byte too small caused overrun.dgp2011-07-131-1/+1
|
* wipunprovendgp2011-07-121-25/+25
|
* wipdgp2011-07-121-6/+6
|
* Type mismatches in *printf calls.dgp2011-07-112-9/+11
|
* fix USE_TCLALLOC so that it can be enabled without editing the Makefilemig2011-05-071-0/+7
|
* fix for [Bug 3288345]: use _stat32i64 for CYGWIN toojan.nijtmans2011-04-271-1/+5
|
* struct _stat64 -> struct __stat64 for AMD64jan2011-04-261-1/+1
|
* Make sure SetFooFromAny routines react reasonably when passed a NULL interp.dgp2011-04-214-2/+15
|
* fix warnings in tclTest.cjan.nijtmans2011-04-211-11/+11
|
* Silence unused variable warningdgp2011-04-201-2/+1
|
* fix for [Bug 3288345]: Wrong Tcl_StatBuf used on MinGW. Follow-up: get it ↵jan2011-04-203-5/+7
| | | | right for cygwin and WIN64 as well.
* fix for [Bug 3288345]: Wrong Tcl_StatBuf used on MinGW.jan.nijtmans2011-04-181-12/+7
|
* fix for [Bug 2662380], crash caused by appending to a variable with a write ↵mig2011-04-131-1/+2
| | | | trace that unsets it
* gcc warning: unused variable "key"jan.nijtmans2011-03-281-2/+1
|
* [Bug 3007895]: Tcl_(Find|Create)HashEntryjan2011-03-251-2/+30
| | | | | | | stub entries can never be called. They still cannot be called (no change in functionality), but at least they now do exactly the same as the Tcl_(Find|Create)HashEntry macro's, so the confusion addressed in this Bug report is gone. Merged --cherrypick from Tcl8.5 (2010-12-31,e75735ef76)
* Remove Tclp(Local|Gm)time_unix forwarders, the same can be done directlyjan.nijtmans2011-03-254-19/+22
| | | Some void -> VOID transitions
* Ensure that any reference to temporary index tables is squelched immediatelydkf2011-03-241-0/+10
| | | rather than hanging around to trip us up in the future.
* [Bug #3197864] pointer truncation on Win64 TCL_MEM_DEBUG buildsjan.nijtmans2011-03-161-4/+4
|
* Fix gcc warnings: variable set but not usedjan.nijtmans2011-03-082-0/+8
|
* * generic/tclBasic.c: More replacements of Tcl_UtfBackslash() callsdgp2011-03-065-22/+23
| | | | | | * generic/tclCmdMZ.c: with TclParseBackslash() where possible. * generic/tclCompExpr.c: * generic/tclCompile.c: * generic/tclUtil.c:
* * generic/tclUtil.c (TclFindElement): Guard escape sequence scansdgp2011-03-061-1/+1
| | | to not overrun the string end. [Bug 3192636]
* * generic/tclParse.c (TclParseBackslash): Correct trunction checks indgp2011-03-061-2/+2
| | | * tests/parse.test: \x and \u substitutions. [Bug 3200987]
* Typo in last commit broke tclStringObj.c build. Fixed.dgp2011-03-011-0/+1
|
* Now that we're no longer using SCM based on RCS, the RCS Keyword lines causedgp2011-03-0183-166/+0
| | | more harm than good. Purged them.
* [Bug 3129448]: Possible over-allocation on 64-bit platforms, part 2,nijtmans2011-01-253-113/+115
| | | | backported strcpy->memcpy change but not change in any struct.
* [Bug 3127687] Triggers FORTIFY_SOURCE buffer overflow detectionnijtmans2010-12-051-4/+4
|