summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 1999-08-09 Jeff Hobbs <hobbs@scriptics.com>hobbs1999-08-091-8/+10
| | | | | * library/init.tcl: fixed path handling in auto_execok (it could miss including the normal path on some Windows machines) [Bug: 1276]
* 1999-08-09 Jeff Hobbs <hobbs@scriptics.com>hobbs1999-08-096-18/+21
| | | | | | | | | * doc/Object.3: clarified Tcl_DecrRefCount docs [Bug: 1952] * doc/array.n: clarified array pattern docs [Bug: 1330] * doc/clock.n: fixed clock docs [Bug: 693] * doc/lindex.n: clarified to account for new end-int behavior. * doc/string.n: fixed formatting errors [Bug: 2188 2189] * doc/tclvars.n: fixed doc error [Bug: 2042]
* 1999-08-09 Jeff Hobbs <hobbs@scriptics.com>hobbs1999-08-091-2/+13
| | | | | | | | | | | * doc/Object.3: clarified Tcl_DecrRefCount docs [Bug: 1952] * doc/array.n: clarified array pattern docs [Bug: 1330] * doc/clock.n: fixed clock docs [Bug: 693] * doc/lindex.n: clarified to account for new end-int behavior. * doc/string.n: fixed formatting errors [Bug: 2188 2189] * doc/tclvars.n: fixed doc error [Bug: 2042] * library/init.tcl: fixed path handling in auto_execok (it could miss including the normal path on some Windows machines) [Bug: 1276]
* 1999-08-05 Jeff Hobbs <hobbs@scriptics.com>hobbs1999-08-053-6/+9
| | | | | * library/http2.1/http.tcl: Made use of "i" in init section not use global var and start at 0 (was 1). [Bug: 2502]
* 1999-08-05 Jeff Hobbs <hobbs@scriptics.com>hobbs1999-08-051-3/+6
| | | | | * generic/tclLiteral.c: fixed reference to bytes that might not be null terminated (using objPtr->bytes, which is) [Bug: 2496]
* 1999-08-05 Jeff Hobbs <hobbs@scriptics.com>hobbs1999-08-051-13/+13
| | | | | * doc/tclvars.n: Made it clear that tcl_pkgPath was not set for Windows (already mentioned in init.tcl) [Bug: 2455]
* 1999-08-05 Jeff Hobbs <hobbs@scriptics.com>hobbs1999-08-051-0/+9
| | | | | | | | | * doc/tclvars.n: Made it clear that tcl_pkgPath was not set for Windows (already mentioned in init.tcl) [Bug: 2455] * generic/tclLiteral.c: fixed reference to bytes that might not be null terminated (using objPtr->bytes, which is) [Bug: 2496] * library/http2.1/http.tcl: Made use of "i" in init section not use global var. [Bug: 2502]
* Declare the tclStubs table so we can use it to swap out Tcl_SetTimer and ↵jingham1999-08-051-1/+8
| | | | Tcl_WaitForEvent in this file.
* *** empty log message ***stanton1999-08-051-0/+13
|
* * tests/reg.test: Added test for REG_EXPECT bug fixed by Henry'sstanton1999-08-051-1/+2
| | | | patch.
* * generic/regc_nfa.c:stanton1999-08-055-72/+111
| | | | | | | | | * generic/regcomp.c: * generic/rege_dfa.c: * generic/regexec.c: * generic/regguts.h: Applied patches supplied by Henry Spencer to greatly enhance the performance of certain classes of regular expressions. [Bug: 2440, 2447]
* Released Tcl 8.2b2.scriptics_tclpro_1_3_b4core_8_2_b2redman1999-08-041-1/+79
|
* Remove extern declaration for TclWinGetPlatform functions, they'reredman1999-08-041-6/+1
| | | | already in tclInt.decls. Only affects open source release.
* Move functions declarations out of win/tclWinInt.h that are now inredman1999-08-032-4/+6
| | | | generic/tclInt.decls
* * unix/configure.in:redman1999-08-023-4/+7
| | | | * win/configure.in: Change beta level to b2.
* removed extra declaration of Tcl_RegExpMatchObjredman1999-08-023-17/+3
|
* * generic/tcl.h:redman1999-08-029-37/+53
| | | | | | | | | | | | | * generic/tcl.decls: * generic/tclDecls.h: * generic/tclInt.h: * generic/tclInt.decls: * generic/tclIntDecls.h: * generic/tclRegexp.h: * generic/tclStubInit.c: Move some exported public and internal functions to the stub tables. Removed functions that are in the stub tables (from this and previous changes) from the original header files.
* * win/tclWinSock.c: Added comment block to SocketThread()redman1999-08-012-8/+34
| | | | | | function. Added code to avoid calling TerminateThread(), but instead to send a message to the socket event window to tell it to terminate its thread.
* * generic/tclInt.decls: added declaractions necessary for thehobbs1999-08-015-4/+108
| | | | Tcl test code to work wth stubs [Bug: 2445]
* * unix/tclUnixThrd.c: Applied patch to fix threads on Irix 6.5.redman1999-07-313-8/+18
| | | | | | | Patch from James Dennett. [Bug: 2450] * tests/info.test: Enable test for tclParse.c change (info complete).
* * win/tclWinPipe.c:redman1999-07-314-7/+28
| | | | | | | | | | * win/Makefile.in: Fixing launching of 16-bit apps on Win9x from wish. The command line was primed with tclpip82.dll, but it was ignored. Fixed that, then fixed the gmake makefile to build tclpip82.dll as an executable. * win/tclWinSock.c: Applied small patch to get thread-specific data after initializing the socket driver.
* Added definitions for some symbols in tclConfig.sh that never gotwart1999-07-303-1/+15
| | | | values in Windows.
* Parameterized the static library linkers (ar cr and lib -nologo) to assistwart1999-07-302-2/+4
| | | | in merging the Makefile.in files later.
* * tclParse.c: fixed bug in info complete regarding nested squarehobbs1999-07-302-2/+10
| | | | brackets [Bug: 2382, 2466]
* updated trf patch to fix problems created when adapting Kupries'hobbs1999-07-301-51/+81
| | | | previous patch to our specs.
* Updated to match the new return values from tcltest.jenn1999-07-301-4/+4
|
* * win/tclWinChan.c: Allow tcl to open CON and NUL, even for stdredman1999-07-302-15/+23
| | | | | | channels. Checking for bad/unusable std channels was moved to Tk since its only purpose was to check whether to use the Tk Console Window for the std channels. [Bug: 2393 2392 2209 2458]
* Exit with non-zero status if there were problems with the way the testjenn1999-07-302-14/+14
| | | | suite was started (e.g. wrong # arguments)
* * unix/mkLinks.tcl: Applied patch to avoid linking pack.n toredman1999-07-293-8/+9
| | | | | | | pack-old.n. Patch from Don Porter. [Bug: 2469] * doc/Encoding.n: Applied patch to fix typo in .SH NAME line. Patch from Don Porter. [Bug: 2451]
* win/tclWinSock.c: free Win32 Event handles when destroying socketredman1999-07-292-2/+12
| | | | helper threads.
* Added lines so that extensions can set up static linker (ar vs. lib) andwart1999-07-292-3/+15
| | | | C compiler warning flags easily.
* Added entries for LDFLAGS_DEBUG and LDFLAGS_OPTIMIZE so that extensions canwart1999-07-282-2/+10
| | | | get these values in the same way they get the debug and optimize CFLAGS.
* * tests/tcltest.test:jenn1999-07-284-31/+45
| | | | | | | | * library/tcltest1.0/tcltest.tcl: Fixed the condition under which ::tcltest::PrintError had an infinite loop problem and added a test case for it. Added an optional argument to ::tcltest::getMatchingFiles telling it where to search for test files.
* update Windows installer bitmap to read Tcl/Tk Version 8.2redman1999-07-272-1/+6
|
* Bug fixes for threaded Tcl on NT with single and dual CPUs. Still someredman1999-07-277-13/+52
| | | | open issues, this code is a little more stable though.
* * tests/tcltest.test:jenn1999-07-264-297/+424
| | | | | | * library/tcltest1.0/tcltest.tcl: * doc/tcltest.n: Cleaned up code in ::tcltest::PrintError, revised documentation, and added tests for the tcltest package.
* Tests for the tcltest packagejenn1999-07-261-0/+296
|
* Change destination of dde package to dde1.1.redman1999-07-261-1/+1
|
* Removed patch for bug 2382, for info complete.redman1999-07-233-7/+13
|
* * win/tclWinSock.c: Fixed hang with threads enabled, fixedredman1999-07-221-0/+8
| | | | | | | | | semaphores with threads disabled. * win/safe.test: Fixed safe-6.3 with threads enabled. * win/Makefile.in: Fixed calling of tcltest to fix safe.test failures due to path TCL_LIBRARY path.
* Fix hange with socket code (win32) with threads enabled, fixedredman1999-07-224-20/+38
| | | | | the semaphores for threads disabled. Fixed calling of tcltest in Makefile.in (win32) and fixed safe-6.3 for threads enabled.
* * Changed version to 8.2b2.redman1999-07-2220-82/+139
| | | | | | | | | | | | | | | | | | * win/tclWinPort.h: Block out include of sys/*.h in order to build extensions with MetroWerks compiler for Win32. [Bug: 2385] * generic/tclCmdMZ.c: * generic/tclIO.c: Fix ANSI-style prototypes based on patch from Ulrich Ring. [Bug: 2391] * unix/Makefile.in: Need to make install-sh executable before calling (with chmod +x). [Bug: 2413] * tests/var.test: * generic/tclVar.c: Fixed bug that caused a seg. fault when using "array set a(b) {}", which is a bad array name anyway. Now the "array set" command will return an error in this case. Added test case and fixed existing test. [Bug: 2427]
* Applied patch for info complete. [Bug: 2382]redman1999-07-223-4/+15
|
* revert changes to TclpStrftime, not needed for internal functions.redman1999-07-225-20/+16
|
* * doc/Utf.3:redman1999-07-229-31/+44
| | | | | | | | | | | | | * generic/tcl.decls: * generic/tclInt.decls: * generic/tclDecls.h: * generic/tclIntDecls.h: * generic/tclUtf.c: * compat/strftime.c: * unix/tclUnixTime.c: Changed function declarations in non-platform-specific APIs to use "unsigned long" instead of "size_t", which may not be defined on certain compilers (rather than include sys/types.h, which may not exist).
* * unix/Makefile.in: Added the Windows configure script to theredman1999-07-222-1/+6
| | | | | distribution file list, already shipping configure.in and the .m4 files, but needed the configure script itself.
* * win/makefile.vc: Changed version number of DDE package in VC++redman1999-07-222-4/+7
| | | | makefile to use 1.1 instead of 1.0.
* * doc/open.n: Added documentation of \\.\comX notation for openingredman1999-07-224-97/+178
| | | | | | | | | | | serial ports on Windows (alternative to comX:). * tests/ioCmd.test: * doc/open.n: * win/tclWinSerial.c: Applied patch from Rolf Schroedter to add -pollinterval option to fconfigure to modify the maxblocktime used in the fileevent polling. Added documentation and fixed the test case as well.
* added a line to initialize the tclDefaultLibrary tcl global var to "", ashershey1999-07-211-2/+9
| | | | was done in Tcl8.0.5.
* Previous version was a mistake, roll it back.redman1999-07-211-3/+1
|