summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Getting more systematic about styledkf2005-07-199-1535/+1599
|
* Systematizing the formattingdkf2005-07-197-923/+1087
| | | | | Also simplified the AIX loader so that it's failure-mode code wasn't scattered all over quite so much.
* Formatting systematization. dkf2005-07-191-263/+309
| | | | | Also removed check of result of ckalloc() for NULL; it will never succeed (ckalloc will *always* panic on failure)
* Getting more systematic about styledkf2005-07-192-568/+566
|
* socket wrong#args message now follows the general conventionsdkf2005-07-171-16/+6
|
* Try again :-}dkf2005-07-171-2/+3
|
* Ugh; convert unfortunate tab back to a spacedkf2005-07-171-2/+2
|
* D'ohdkf2005-07-171-2/+2
|
* oops; how did I reorder those fields? :-(dkf2005-07-171-2/+2
|
* Getting more systematic about styledkf2005-07-1717-11234/+11620
|
* Tk Bug 1227781Kevin B Kenny2005-07-162-1/+8
|
* Bug 1237907Kevin B Kenny2005-07-154-10/+110
|
* Whitespace/comment tidyingdkf2005-07-151-931/+914
|
* More tidying updkf2005-07-151-204/+190
|
* More minor tinkering with comments and code-layoutdkf2005-07-141-13/+14
|
* Stop warningdkf2005-07-141-2/+2
|
* Oopsdkf2005-07-141-2/+2
|
* Style improvements to tclCompile.c, plus bytecode printing enhancements.dkf2005-07-143-918/+892
|
* copy/paste/fail-to-modify error in comment.dgp2005-07-131-2/+2
|
* * unix/tclUnixSock.c: Use a ProcessGlobalValue to store thedgp2005-07-133-103/+126
| | | | | | | * win/tclWinSock.c: value returned by Tcl_GetHostName() ([info hostname]). Also re-order initialization of the value on Windows to favor GetComputerName() over gethostname() as a source of the information.
* Doc clarificationdkf2005-07-122-2/+8
|
* Purely style-guide cleansingdkf2005-07-112-2216/+2110
|
* * generic/tclExecute.c (TclExecuteByteCode):mdejong2005-07-093-50/+1128
| | | | | | | | | | | | | | | | | Reimplement long and wide type integer division and modulus operations so that the smallest and largest integer values are handled properly. The divide operation is more efficient since it no longer does a modulus or negation and only checks for a remainder when the quotient will be a negative number. The modulus operation is now a bit more complex because of a number of special cases dealing with the smallest and largest integers. * tests/expr.test: Add test cases for division and modulus operations on the smallest and largest integer values for 32 and 64 bit types. [Patch 1230205]
* * generic/tclLink.c: Simplified LinkTraceProc [Bug 1208108].dgp2005-07-062-27/+16
|
* * unix/Makefile.in: Purged use of TCLTESTARGS [RFE 1161550].dgp2005-07-052-3/+5
|
* * generic/tclUtil.c: Converted TclFormatInt() into a macro.dgp2005-07-056-104/+32
| | | | | | | | * generic/tclInt.decls: [RFE 1194015] * generic/tclInt.h: * generic/tclIntDecls.h: make genstubs * generic/tclStubInit.c:
* * generic/tclNamesp.c: Allow for [namespace import] of a commanddgp2005-07-053-3/+18
| | | | | * tests/namespace.test: over a previous [namespace import] of itself without throwing an error. [RFE 1230597]
* Style-guide reformat and get rid of gcc warningdkf2005-07-051-1360/+1355
|
* Much whitespace/style tidying updkf2005-07-051-622/+590
|
* Whitespace/fmt fixesdkf2005-07-041-15/+13
|
* Purge remnants of old dictionary rep interlocking code; it only ever workeddkf2005-07-042-44/+32
| | | | when the locking was in the core of the iterator itself.
* Protect against spurious wake-ups while waiting on the condition variablevasiljevic2005-07-012-6/+14
| | | | when tearing down the notifier thread [Bug# 1222872].
* * generic/tclExecute.c (TclExecuteByteCode):mdejong2005-06-293-6/+293
| | | | | | | | | | | When parsing an integer operand for a unary minus expression operator, check for a wide integer that is actually LONG_MIN. If found, convert it back to a long int type. * tests/expr.test: Add constraint for 32bit long int type and 64bit wide int type. Add tests that parse the smallest/largest long int and wide int values.
* increased warning about [auto_reset] bug fix.dgp2005-06-271-1/+3
|
* Add explanatory comment about static unprotected variables.dkf2005-06-261-1/+7
|
* * library/auto.tcl: Make file safe to re-[source] withoutdgp2005-06-241-23/+23
| | | | destroying registered auto_mkindex_parser hooks.
* cleanup Tcl_Preserve after exit handlersKevin B Kenny2005-06-244-17/+20
|
* * library/auto.tcl: Make file safe to re-[source] withoutdgp2005-06-242-20/+32
| | | | destroying registered auto_mkindex_parser hooks.
* bug 1225957Kevin B Kenny2005-06-233-313/+294
|
* * tools/tcltk-man2html.tcl: fixed useversion glob pattern to acceptdas2005-06-232-1/+6
| | | | multi-digit patchlevels.
* bug 1225044Kevin B Kenny2005-06-222-2/+9
|
* * win/tclWinFile.c: Potential buffer overflow. [Bug 1225571]dgp2005-06-222-3/+8
| | | | Thanks to Pat Thoyts for discovery and fix.
* bug 1225727Kevin B Kenny2005-06-226-12/+58
|
* * generic/tclInt.h: Followup to change made on 2005-06-18 byandreas_kupries2005-06-212-1/+10
| | | | | | | Daniel Steffen. There are compilers (*) who error out on the redefinition of WORDS_BIGENDIAN. We have to undef the previous definition (on the command line) first to make this acceptable. (*): AIX native.
* bug 1194458Kevin B Kenny2005-06-213-9/+31
|
* * generic/tclBasic.c: Added missing walk of the list of active tracesdgp2005-06-215-9/+87
| | | | | | | * generic/tclTrace.c: to cleanup references to traces being deleted. * generic/tclInt.h: [Bug 1201035] Made the walk of the active trace * tests/trace.test (trace-34.*): list aware of the direction of trace scanning, so the proper correction can be made. [Bug 1224585]
* autoconfdgp2005-06-211-2/+3
|
* Only enable the 'compile' special debugging feature when requested indkf2005-06-213-7/+16
| | | | | configure.in; removes irrelevant junk from the configure files of extensions that use Tcl's tcl.m4.
* typosdkf2005-06-202-3/+4
|
* typodkf2005-06-201-2/+2
|