Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Updated to reflect recent changes | wart | 1999-06-17 | 1 | -0/+8 | |
| | ||||||
* | Fixed compiler optimization flags for Linux to remove a plethora of warnings. | wart | 1999-06-17 | 2 | -0/+14 | |
| | ||||||
* | * generic/tclVar.c (Tcl_VariableObjCmd): fixed premature increment | hershey | 1999-06-17 | 2 | -3/+8 | |
| | | | | in loop that was causing out-of-bounds reads on array "varName". | |||||
* | Reflects changes to tcl.m4 | wart | 1999-06-16 | 1 | -800/+802 | |
| | ||||||
* | Added changes to make the macros bahave in the same manner as the Windows | wart | 1999-06-16 | 1 | -126/+126 | |
| | | | | tcl.m4 macros | |||||
* | more incremental changes | surles | 1999-06-16 | 3 | -22/+57 | |
| | ||||||
* | added tclConfig.sh.in for Windows | surles | 1999-06-16 | 1 | -0/+171 | |
| | ||||||
* | merged unix and windows styles | surles | 1999-06-16 | 6 | -63/+73 | |
| | ||||||
* | *** empty log message *** | stanton | 1999-06-16 | 1 | -0/+7 | |
| | ||||||
* | * tests/execute.test: | stanton | 1999-06-16 | 2 | -89/+155 | |
| | | | | | | * generic/tclExecute.c (TclExecuteByteCode): Fixed crash caused by a bug in INST_LOAD_SCALAR1 where the scalar index was read as a signed 1 byte value instead of unsigned. [Bug: 2243] | |||||
* | Reorganized the order of the macros (cosmetic change) | wart | 1999-06-16 | 1 | -676/+678 | |
| | ||||||
* | modified files to work with new windows Makefiles | surles | 1999-06-16 | 4 | -95/+129 | |
| | ||||||
* | More TEA changes. Should play well with TclX now. | wart | 1999-06-16 | 3 | -29/+43 | |
| | ||||||
* | Fix DDE code to reinitialize with new servername. | redman | 1999-06-16 | 1 | -1/+6 | |
| | ||||||
* | fixed bug that cause bad memory read on Windows | hershey | 1999-06-16 | 1 | -5/+5 | |
| | ||||||
* | fixed bugs that kept windows from compiling. | hershey | 1999-06-16 | 1 | -6/+6 | |
| | ||||||
* | beefed up the string object tests | hershey | 1999-06-15 | 3 | -139/+180 | |
| | ||||||
* | Tcl configure / Makefile sequence now complies with the most basic | wart | 1999-06-15 | 2 | -365/+79 | |
| | | | | spec for TEA. | |||||
* | Includes changes to tcl.m4 | wart | 1999-06-15 | 1 | -148/+710 | |
| | ||||||
* | Modified some macros based on how some of the extensions work. | wart | 1999-06-15 | 1 | -148/+710 | |
| | ||||||
* | Improved the appendObj functions (uncomented the optimized code that was | hershey | 1999-06-15 | 3 | -130/+106 | |
| | | | | | | | | | present in the Unicode obj). Updated the teststringobj command to look in the correct location for the amount of space allocated for the UTF string rep. Note: one stringObj test is still failing; it reflects a change in that may not be undesirable... | |||||
* | Merged String and Unicode object types. Added new functions to | hershey | 1999-06-15 | 16 | -1246/+1431 | |
| | | | | | | | | | the puplic API: Tcl_NewUnicodeObj, Tcl_SetUnicodeObj, Tcl_GetUnicode, Tcl_GetUniChar, Tcl_GetCharLength, Tcl_GetRange, Tcl_AppendUnicodeToObj. Note: some stringObj tests are still failing--the teststringobj command still needs to be updated. | |||||
* | Continued work on configure and make scripts | surles | 1999-06-11 | 1 | -18/+18 | |
| | ||||||
* | Continued work on configure and make scripts | surles | 1999-06-11 | 5 | -1674/+756 | |
| | ||||||
* | *** empty log message *** | stanton | 1999-06-10 | 1 | -0/+29 | |
| | ||||||
* | macros that autoconf will be looking for (tcl.m4) | wart | 1999-06-10 | 1 | -0/+875 | |
| | ||||||
* | Macros that autoconf will be looking for (tcl.m4) | wart | 1999-06-10 | 1 | -0/+1127 | |
| | ||||||
* | Modified to use the tcl.m4 macros | wart | 1999-06-10 | 1 | -588/+10 | |
| | ||||||
* | Modified configure.in that uses the tcl.m4 macros | wart | 1999-06-10 | 1 | -47/+9 | |
| | ||||||
* | First pass at Windows Tcl autoconf macros | wart | 1999-06-10 | 1 | -0/+865 | |
| | ||||||
* | First pass at Tcl autoconf macros | wart | 1999-06-10 | 1 | -0/+1114 | |
| | ||||||
* | fied a memory leak. purify nolonger complains. | hershey | 1999-06-10 | 1 | -3/+4 | |
| | ||||||
* | * tools/genStubs.tcl: Changed to always write output in LF mode. | stanton | 1999-06-10 | 1 | -1/+4 | |
| | ||||||
* | * generic/tclUnicodeObj.c: Lots of cleanup and simplification. | stanton | 1999-06-10 | 10 | -194/+439 | |
| | | | | | | | | | | | | | | | | | | | | | | | Fixed several memory bugs. Added TclAppendUnicodeToObj. * generic/tclInt.h: Added declarations for various Unicode string functions. * generic/tclRegexp.c: * generic/tclCmdMZ.c: Changed to use new Unicode string interfaces for better performance. * generic/tclRegexp.h: * generic/tclRegexp.c: * generic/tcl.h: * generic/tcl.decls: Added Tcl_RegExpMatchObj and Tcl_RegExpGetInfo calls to access lower level regexp API. These features are needed by Expect. This is a preliminary implementation pending final review and cleanup. * generic/tclCmdMZ.c: * tests/string.test: Fixed bug where string map failed on null strings. | |||||
* | * generic/regexec.c: | stanton | 1999-06-10 | 2 | -5/+4 | |
| | | | | * unix/tclUnixNotfy.c: lint | |||||
* | performance improvement for TclGetUnicodeFromObj function and the Unicode | hershey | 1999-06-09 | 1 | -78/+26 | |
| | | | | object type. | |||||
* | unset the variable "u" whose initial value could affect test passage. | hershey | 1999-06-09 | 1 | -1/+3 | |
| | ||||||
* | added TclGetUnicodeFromObj function for use with regexp | hershey | 1999-06-08 | 2 | -30/+115 | |
| | ||||||
* | *** empty log message *** | stanton | 1999-06-08 | 1 | -0/+7 | |
| | ||||||
* | * win/tclWinSock.c: Rolled back to the 8.1.0 implementation | stanton | 1999-06-08 | 1 | -2674/+2279 | |
| | | | | | | because of serious problems with the new driver. Basically no incoming socket connections would be reported to a server port. The 8.1.1 code needs to be redesigned and fixed correctly. | |||||
* | added code to unset the "data" array so tests that follow can use a scalar | hershey | 1999-06-08 | 2 | -6/+10 | |
| | | | | data var w/o having to unset it first. | |||||
* | * tests/string.test: | hershey | 1999-06-08 | 13 | -62/+1176 | |
| | | | | | | | | | | | | | | | | | | | | | | | * generic/tclVar.c (Tcl_SetVar2Ex): * generic/tclStringObj.c (Tcl_AppendObjToObj): * generic/tclCmdMZ.c (Tcl_StringObjCmd): optimized the string index, string length, string range, and append command in cases where the object's internal rep is a bytearray. Objects with other internal reps are converted to have the new unicode internal rep. * unix/Makefile.in: * win/Makefile.in: * win/Makefile.vc: * tests/unicode.test: * generic/tclInt.h: * generic/tclObj.c: * generic/tclUnicodeObj.c: added a new object type to store the unicode representation of a string. * generic/tclTestObj.c: added the objtype option to the testobj command. This option returns the name of the type of internal rep an object has. | |||||
* | *** empty log message *** | stanton | 1999-06-05 | 1 | -0/+7 | |
| | ||||||
* | * win/configure.in: | stanton | 1999-06-05 | 2 | -114/+113 | |
| | | | | | | * win/Makefile.in: Windows build now handles static/dynamic debug/nodebug builds and supports the standard targets using Cygwin user tools plus GNU make and autoconf. | |||||
* | *** empty log message *** | stanton | 1999-06-03 | 1 | -0/+11 | |
| | ||||||
* | * generic/tclCmdMZ.c (Tcl_StringObjCmd): | stanton | 1999-06-03 | 3 | -25/+68 | |
| | | | | | * tests/string.test: Fixed bug where string equal/compare -nocase reported wrong result on null strings. [Bug: 2138] | |||||
* | fixed install target for man pages | surles | 1999-06-02 | 1 | -1/+2 | |
| | ||||||
* | fixed typo | stanton | 1999-06-02 | 1 | -2/+2 | |
| | ||||||
* | * generic/tclUtf.c (Tcl_UtfNcasecmp): Fixed incorrect computation | stanton | 1999-06-02 | 1 | -4/+7 | |
| | | | | of relative ordering. [Bug: 2135] | |||||
* | Added makefile targets and configure switches to be TEA compliant | surles | 1999-06-02 | 3 | -79/+282 | |
| |