summaryrefslogtreecommitdiffstats
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
* 1999-08-21 Jeff Hobbs <hobbs@scriptics.com>hobbs1999-08-211-2/+22
| | | | | | | | | | | | | | | * unix/aclocal.m4: Changed AIX-4.[2-9] check to AIX-4.[1-9] [Bug: 1909] 1999-08-20 Jeff Hobbs <hobbs@scriptics.com> * generic/tclPosixStr.c: fixed typo [Bug: 2592] * doc/*: fixed various nroff bugs in man pages [Bug: 2503 2588] 1999-08-19 Jeff Hobbs <hobbs@scriptics.com> * win/README.binary: fixed version info and some typos [Bug: 2561]
* 1999-08-19 Jeff Hobbs <hobbs@scriptics.com>hobbs1999-08-191-0/+6
| | | | | * generic/tclIO.c: changed Tcl_GetChannelNames* to use K&R style headers (style guide, also pleases HP cc)
* 1999-08-18 Jeff Hobbs <hobbs@scriptics.com>hobbs1999-08-191-2/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * doc/Eval.3: fixed doc on input args [Bug: 2114] * doc/OpenFileChnl.3: * doc/file.n: * tests/cmdAH.test: * tclIO.c: * tclCmdAH.c: added "file channels ?pattern?" tcl command, with associated Tcl_GetChannelNames and Tcl_GetChannelNamesEx public C APIs (added to tcl.decls as well), with docs and tests. * tests/expr.test: * generic/tclCompile.c: add TCL_TOKEN_VARIABLE to the part types that cause differed compilation for exprs, to correct the expr double-evaluation problem for vars. Added test cases. * unix/Makefile.in: changed the dependency structure so that install-* is dependent on * (ie - install-binaries is dependent on binaries). * library/auto.tcl: * library/init.tcl: * library/ldAout.tcl: * library/package.tcl: * library/safe.tcl: * library/word.tcl: * library/http2.1/http.tcl: * library/msgcat1.0/msgcat.tcl: updated libraries to better Tcl style guide (no more string comparisons with == or !=, spacing changes).
* *** empty log message ***jingham1999-08-131-0/+5
|
* *** empty log message ***stanton1999-08-121-0/+10
|
* Applied patch to remove compiler warning.redman1999-08-121-0/+5
|
* Rolled back changes to change the prototype ofredman1999-08-101-7/+0
| | | | Tcl_ListObjGetElements()
* * generic/tclListObj.c:core_8_2_b3_baseredman1999-08-101-0/+38
| | | | | | | | | | | | | | | | * generic/tcl.decls: * generic/tclDecls.h: Applied patch from Jim Ingham to change the prototype of Tcl_ListObjGetElements to have the last argument have a CONST so that you can feed it the objv that you get from the standard TclObj command proc. * generic/tclAlloc.c: * generic/tclCmdIL.c: * generic/tclIO.c: * generic/tclThread.c: * win/tclWinThrd.c: * unix/tclUnixThrd.c: Fixed Brent's changes so that they work on Windows (and he fixed the bug in the Unix thread implementation).
* 1999-08-09 Jeff Hobbs <hobbs@scriptics.com>hobbs1999-08-101-0/+4
| | | | | | * tests/string.test: added largest_int proc to adapt for >32 bit machines and int overflow testing. * tests/tcltest.test: fixed minor error in 8.2 result (from dgp)
* 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-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]
* *** empty log message ***stanton1999-08-051-0/+13
|
* Move functions declarations out of win/tclWinInt.h that are now inredman1999-08-031-0/+5
| | | | generic/tclInt.decls
* * unix/configure.in:redman1999-08-021-0/+3
| | | | * win/configure.in: Change beta level to b2.
* * generic/tcl.h:redman1999-08-021-1/+15
| | | | | | | | | | | | | * 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-011-0/+7
| | | | | | 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-011-0/+5
| | | | Tcl test code to work wth stubs [Bug: 2445]
* * unix/tclUnixThrd.c: Applied patch to fix threads on Irix 6.5.redman1999-07-311-5/+13
| | | | | | | Patch from James Dennett. [Bug: 2450] * tests/info.test: Enable test for tclParse.c change (info complete).
* * win/tclWinPipe.c:redman1999-07-311-0/+11
| | | | | | | | | | * 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.
* * tclParse.c: fixed bug in info complete regarding nested squarehobbs1999-07-301-0/+5
| | | | brackets [Bug: 2382, 2466]
* * win/tclWinChan.c: Allow tcl to open CON and NUL, even for stdredman1999-07-301-0/+5
| | | | | | 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]
* * unix/mkLinks.tcl: Applied patch to avoid linking pack.n toredman1999-07-291-0/+6
| | | | | | | 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-291-1/+6
| | | | helper threads.
* * tests/tcltest.test:jenn1999-07-281-0/+9
| | | | | | | | * 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-271-1/+6
|
* Bug fixes for threaded Tcl on NT with single and dual CPUs. Still someredman1999-07-271-0/+22
| | | | open issues, this code is a little more stable though.
* * tests/tcltest.test:jenn1999-07-261-0/+7
| | | | | | * library/tcltest1.0/tcltest.tcl: * doc/tcltest.n: Cleaned up code in ::tcltest::PrintError, revised documentation, and added tests for the tcltest package.
* Removed patch for bug 2382, for info complete.redman1999-07-231-0/+7
|
* * 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.
* * Changed version to 8.2b2.redman1999-07-221-0/+20
| | | | | | | | | | | | | | | | | | * 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-221-1/+5
|
* revert changes to TclpStrftime, not needed for internal functions.redman1999-07-221-6/+2
|
* * doc/Utf.3:redman1999-07-221-0/+12
| | | | | | | | | | | | | * 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-221-0/+4
| | | | | 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-221-0/+3
| | | | makefile to use 1.1 instead of 1.0.
* * doc/open.n: Added documentation of \\.\comX notation for openingredman1999-07-221-1/+11
| | | | | | | | | | | 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.
* * win/tclWinSock.c: Modified 8.1.0 version of the Win32 socketredman1999-07-211-0/+10
| | | | | | | | | driver to move the handling of the socket event window in a separate thread. It also turned out that Win95 & Win98 were, in some cases, getting multiple FD_ACCEPTs but only handling one. Added a count for the FD_ACCEPT to take care of this. Tested on NT4 SP3, NT4 SP4, Win95, and Win98. [Bug: 2178 2256 2259 2329 2323 2355]
* Small tweaks to the top-level README to fix typos and wording.jpeek1999-07-211-0/+4
|
* * generic/tclInitScript.h:hershey1999-07-211-0/+10
| | | | | | | | | * unix/tclUnixInit.c: merged code with 8.0.5. We now use an intermediate global tcl var "tclDefaultLibrary" to keep the "tcl_library" var from being set by the default value in the Makefile. Also fixed a bug in which caused the value of TCL_LIBRARY env var to be ignored. * unix/tclWinInit.c: just updated some comments.
* changed http package version from 2.0 to 2.1hershey1999-07-201-0/+5
|
* Add Tcl_SetNotifier to stubs table. [Bug: 2354]redman1999-07-161-0/+5
|
* * unix/aclocal.m4:redman1999-07-161-0/+14
| | | | | | | | * unix/tcl.m4: Add check for Alpha/Linux to correct the IEEE floating flag to the compiler, should be -mieee. Patch from Don Porter. * tools/tcl.hpj.in: Change version number of .cnt file referenced in .HPJ file.
* doc/re_syntax.n: Deleted sentence suggested by Scott S.jpeek1999-07-141-0/+4
|
* Documented tweaks to the tcl/docs/re_syntax.n manpage file.jpeek1999-07-131-0/+5
|
* Changed version numbers in NMAKE makefile.redman1999-07-111-0/+8
|
* * win/configure.in: Eval DLLSUFFIX, LIBSUFFIX, and EXESUFFIX inredman1999-07-091-0/+7
| | | | | | the configure script so that substitutions get expanded before being placed in the Makefile. The "d" portion for debug libraries and DLLs was not being set properly.
* *** empty log message ***stanton1999-07-091-0/+6
|
* Removed -asidefromdir and -relateddir flags, removed unusedjenn1999-07-091-1/+10
| | | | | ::tcltest::dotests proc, cleaned up implementation of core file checking, and fixed the code that checks for 1-letter flag abbreviations.
* * win/Makefile.in: Added tcltest target so runtest worksstanton1999-07-081-0/+9
| | | | | | | | properly. Added missing names to the clean/distclean targets. * tests/reg.test: * generic/rege_dfa.c: Applied fix supplied by Henry Spencer for bug in DFA state caching under lookahead conditions. [Bug: 2318]
* * doc/fconfigure.n: Clarified default buffering behavior for thestanton1999-07-071-0/+5
| | | | standard channels. [Bug: 2335]