summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* modified files to work with new windows Makefilessurles1999-06-164-95/+129
|
* More TEA changes. Should play well with TclX now.wart1999-06-163-29/+43
|
* Fix DDE code to reinitialize with new servername.redman1999-06-161-1/+6
|
* fixed bug that cause bad memory read on Windowshershey1999-06-161-5/+5
|
* fixed bugs that kept windows from compiling.hershey1999-06-161-6/+6
|
* beefed up the string object testshershey1999-06-153-139/+180
|
* Tcl configure / Makefile sequence now complies with the most basicwart1999-06-152-365/+79
| | | | spec for TEA.
* Includes changes to tcl.m4wart1999-06-151-148/+710
|
* Modified some macros based on how some of the extensions work.wart1999-06-151-148/+710
|
* Improved the appendObj functions (uncomented the optimized code that washershey1999-06-153-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 tohershey1999-06-1516-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 scriptssurles1999-06-111-18/+18
|
* Continued work on configure and make scriptssurles1999-06-115-1674/+756
|
* *** empty log message ***stanton1999-06-101-0/+29
|
* macros that autoconf will be looking for (tcl.m4)wart1999-06-101-0/+875
|
* Macros that autoconf will be looking for (tcl.m4)wart1999-06-101-0/+1127
|
* Modified to use the tcl.m4 macroswart1999-06-101-588/+10
|
* Modified configure.in that uses the tcl.m4 macroswart1999-06-101-47/+9
|
* First pass at Windows Tcl autoconf macroswart1999-06-101-0/+865
|
* First pass at Tcl autoconf macroswart1999-06-101-0/+1114
|
* fied a memory leak. purify nolonger complains.hershey1999-06-101-3/+4
|
* * tools/genStubs.tcl: Changed to always write output in LF mode.stanton1999-06-101-1/+4
|
* * generic/tclUnicodeObj.c: Lots of cleanup and simplification.stanton1999-06-1010-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:stanton1999-06-102-5/+4
| | | | * unix/tclUnixNotfy.c: lint
* performance improvement for TclGetUnicodeFromObj function and the Unicodehershey1999-06-091-78/+26
| | | | object type.
* unset the variable "u" whose initial value could affect test passage.hershey1999-06-091-1/+3
|
* added TclGetUnicodeFromObj function for use with regexphershey1999-06-082-30/+115
|
* *** empty log message ***stanton1999-06-081-0/+7
|
* * win/tclWinSock.c: Rolled back to the 8.1.0 implementationstanton1999-06-081-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 scalarhershey1999-06-082-6/+10
| | | | data var w/o having to unset it first.
* * tests/string.test:hershey1999-06-0813-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 ***stanton1999-06-051-0/+7
|
* * win/configure.in:stanton1999-06-052-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 ***stanton1999-06-031-0/+11
|
* * generic/tclCmdMZ.c (Tcl_StringObjCmd):stanton1999-06-033-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 pagessurles1999-06-021-1/+2
|
* fixed typostanton1999-06-021-2/+2
|
* * generic/tclUtf.c (Tcl_UtfNcasecmp): Fixed incorrect computationstanton1999-06-021-4/+7
| | | | of relative ordering. [Bug: 2135]
* Added makefile targets and configure switches to be TEA compliantsurles1999-06-023-79/+282
|
* *** empty log message ***stanton1999-06-021-0/+28
|
* * unix/configure.in: Fixed various small configure.in patchesstanton1999-06-021-4/+5
| | | | submitted by Jan Nijtmans. [Bug: 2121]
* * tests/reg.test:stanton1999-06-0220-217/+716
| | | | | | | | | | | | | | | | | | | | | | | | * generic/regc_color.c: * generic/regc_cvec.c: * generic/regc_lex.c: * generic/regc_locale.c: * generic/regc_nfa.c: * generic/regcomp.c: * generic/regcustom.h: * generic/rege_dfa.c: * generic/regerror.c: * generic/regerrs.h: * generic/regex.h: * generic/regexec.c: * generic/regfree.c: * generic/regfronts.c: * generic/regguts.h: * generic/tclCmdMZ.c: * generic/tclRegexp.c: * generic/tclRegexp.h: * generic/tclTest.c: Applied Henry Spencer's latest regexp patches that fix an infinite loop bug and add support for testing whether a string could match with additional input. [Bug: 2117]
* *** empty log message ***stanton1999-05-281-0/+12
|
* * win/Makefile.in:stanton1999-05-282-0/+411
| | | | * win/configure.in: Added preliminary TEA implementation.
* * win/tclWinDde.c: Fixed bug where dde calls were being passed anstanton1999-05-281-11/+17
| | | | | invalid dde handle because Initialize had not been called. [Bug: 2124]
* * generic/tclObj.c: Changed to eliminate use of isupper/tolower instanton1999-05-281-3/+3
| | | | favor of the Unicode versions.
* fixed error in test reported by prochecksurles1999-05-281-2/+2
|
* Changes for generic/tclThreadTest.c and win/tclWinSock.c bug fixes.redman1999-05-261-0/+9
|
* generic/tclThreadTest.c: Fix race condition in testthread code.redman1999-05-262-13/+23
| | | | | | win/tclWinSock.c: Fixed hang in WinNT socket driver, now wakes up the socket thread to check for events that didn't trigger the WSAEvent.
* Merged changes from 1-3-b2 branch into mainline.stanton1999-05-264-5/+94
|