summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* * doc/load.n: added note about NT's buggy handling of './' withhobbs1999-12-041-1/+8
| | | | LoadLibrary
* see loghobbs1999-12-041-1/+41
|
* * generic/tcl.decls :redman1999-12-029-103/+266
| | | | | | | | | | | | | | * generic/tclMain.c : * unix/tclAppInit.c: * win/tclAppInit.c: Added two new internal functions, TclSetStartupScriptFileName() and TclGetStartupScriptFileName() and added hooks into the main() code for supporting TclPro and other "big" shells more easily without requiring a copy of the main() code. * generic/tclEncoding.c: * generic/tclEvent.c: Moved encoding-related startup code from tclEvent.c into the more appropriate tclEncoding.c.
* * generic/tclIO.c: fix from Kupries for Tcl_UnstackChannel thathobbs1999-12-012-54/+90
| | | | correctly handles resetting translation and encoding.
* * win/tclWinTime.c: fixed handling of %Z on NT for time zoneshobbs1999-12-012-8/+10
| | | | that don't have DST.
* * generic/tclLoad.c: #def'd out the unloading of DLLs at finalizehobbs1999-12-011-1/+9
| | | | | time for Unix in TclFinalizeLoad. [Bug: 2560 3373] Should be parametrized to allow for user to specify unload or not.
* * generic/tclLoad.c: #def'd out the unloading of DLLs at finalizehobbs1999-12-011-0/+10
| | | | | | | | time for Unix in TclFinalizeLoad. [Bug: 2560 3373] Should be parametrized to allow for user to specify unload or not. * win/tclWinTime.c: fixed handling of %Z on NT for time zones that don't have DST.
* * unix/tclUnixPipe.c: fixed PipeBlockModeProc to properly sethobbs1999-11-301-2/+4
| | | | isNonBlocking flag on pipe. [Bug: 1356 710]
* * library/dde1.1/pkgIndex.tcl:hobbs1999-11-304-4/+24
| | | | | * library/reg1.0/pkgIndex.tcl: added supported for debugged versions of the libraries
* see loghobbs1999-11-301-0/+7
|
* * tests/scan.test:hobbs1999-11-303-2/+18
| | | | | * generic/tclScan.c: fixed scan where %[..] didn't match anything and added test case [Bug: 3700]
* * win/tclWinSerial.c: adopted patch from Schroedter to handlehobbs1999-11-241-13/+104
| | | | fconfigure $sock -lasterror on Windows. [RFE: 3368]
* * generic/tclCmdIL.c: made SORTMODE_INTEGER work with Longshobbs1999-11-241-4/+4
| | | | [Bug: 3652]
* * doc/open.n:hobbs1999-11-241-1/+10
| | | | | * win/tclWinSerial.c: adopted patch from Schroedter to handle fconfigure $sock -lasterror on Windows. [RFE: 3368]
* see loghobbs1999-11-241-0/+9
|
* Changed version number on dllswart1999-11-244-4/+4
|
* * library/tcltest1.0/tcltest.tcl: Fixed bug where tcltest outputstanton1999-11-233-4/+12
| | | | | went to stdout instead of the specified output file in some cases.
* Took out "nonPortable" flag that was hiding -timeout tests,welch1999-11-221-4/+45
| | | | plus added more timeout cases for various bad host/port combinations.
* updated to 2.2 version for httphobbs1999-11-201-5/+5
|
* *** empty log message ***hobbs1999-11-194-8/+8
|
* updated to 2.2 in examplehobbs1999-11-191-2/+2
|
* see loghobbs1999-11-191-0/+1
|
* * tools/tcl.wse.in: added tcltest1.0 library to distribution listhobbs1999-11-191-0/+10
|
* removed excess newliuneshobbs1999-11-191-13/+1
|
* * library/http2.1/http.tcl:hobbs1999-11-196-9/+9
| | | | * library/http2.1/pkgIndex.tcl: updated http package to 2.2
* * generic/tclProc.c: backed out change from 1999-11-18 as ithobbs1999-11-191-4/+4
| | | | could affect return string from upvar as well.
* see loghobbs1999-11-191-0/+10
|
* minor change that prevents stack blowinghobbs1999-11-191-3/+3
|
* * unix/tcl.m4: added defined for _THREAD_SAFE in --enable-threadshobbs1999-11-191-20/+48
| | | | | | case; added check for pthread_mutex_init in libc; in AIX case, with --enable-threads ${CC}_r is used; fixed flags when using gcc on SCO
* * tests/scan.test:hobbs1999-11-192-9/+33
| | | | | * generic/tclScan.c: finished support for inline scan by supporting XPG identifiers.
* * library/http2.1/http.tcl: added register and unregisterhobbs1999-11-193-27/+183
| | | | | commands to http:: package (better support for tls/SSL), as well as -type argument to http::geturl. [RFE: 2617]
* * generic/tclProc.c: corrected error reporting for default casehobbs1999-11-197-33/+81
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | at the global level for uplevel command. * generic/tclIOSock.c: changed int to size_t type for len in TclSockMinimumBuffers. * generic/tclCkalloc.c: fixed Tcl_DbCkfree to return a value on NULL input. [Bug: 3400] * generic/tclStringObj.c: fixed support for passing in negative length to Tcl_SetUnicodeObj, et al handling routines. [Bug: 3380] * doc/scan.n: * tests/scan.test: * generic/tclScan.c: finished support for inline scan by supporting XPG identifiers. * doc/http.n: * library/http2.1/http.tcl: added register and unregister commands to http:: package (better support for tls/SSL), as well as -type argument to http::geturl. [RFE: 2617] * generic/tclBasic.c: removed extra decr of numLevels in Tcl_EvalObjEx that could cause seg fault. (mjansen@wendt.de) * generic/tclEvent.c: fixed possible lack of MutexUnlock in Tcl_DeleteExitHandler [Bug: 3545]
* * doc/scan.n:hobbs1999-11-195-24/+66
| | | | | | | | | | | | | | * tests/scan.test: * generic/tclScan.c: finished support for inline scan by supporting XPG identifiers. * doc/http.n: * library/http2.1/http.tcl: added register and unregister commands to http:: package (better support for tls/SSL), as well as -type argument to http::geturl. [RFE: 2617] * doc/glob.n: added note about ..../ glob behavior on Win9* * doc/tcltest.n: fixed minor example errors [Bug: 3551]
* see loghobbs1999-11-191-3/+45
|
* Improved error handling of http::geturl in the case the server iswelch1999-11-184-102/+407
| | | | | not available. Also correctly fixed the bug between -timeout and a subsequent http::status call.
* Added support for the TCLTESTARGS method for passing in additional test ↵wart1999-11-131-3/+3
| | | | arguments
* * unix/tcl.m4: added recognition of pthreads library for AIXhobbs1999-11-101-2/+8
|
* * tools/tcl.wse.in: updated to 8.3a1, fixed install of twind.tclhobbs1999-11-101-6/+6
| | | | and koi8-r.enc files
* *** empty log message ***hobbs1999-11-103-6/+6
|
* * library/init.tcl: removed the installed binary directory fromhobbs1999-11-101-7/+5
| | | | the auto_path variable
* * generic/tclIOUtil.c: changed Tcl_Alloc to ckallochobbs1999-11-104-77/+173
| | | | | | | | | * generic/tclInt.h: * generic/tclObj.c: rolled back changes from 1999-10-29 Purify noted new leaks with that code * generic/tclParse.c: added code in Tcl_ParseBraces to test for possible unbalanced open brace in a comment
* * doc/open.n: corrected docs for 'a' open mode.hobbs1999-11-101-3/+4
|
* see loghobbs1999-11-101-1/+22
|
* Changed references to the README to references to the man page for tcltest.jenn1999-11-042-6/+6
|
* Updated for http.tcl changeswelch1999-10-301-0/+5
|
* Fixed bug in the handling of the status code after an asynchronous connect,welch1999-10-303-9/+6
| | | | e.g., one that is used with the -timeout flag.
* Cleanup of the TclNewObj family of macros, and elimination of thewelch1999-10-303-133/+86
| | | | | special Tcl_Obj memory allocator for the TCL_THREADS case, because this only adds lock contention.
* removed // comments (IBM's AIX compiler complained)hobbs1999-10-291-4/+1
|
* * win/tclWinTest.c: added testvolumetype command, as atime ishobbs1999-10-293-10/+72
| | | | | completely ignored for Windows FAT file systems * win/tclWinPort.h: added sys/utime.h to includes
* * unix/tclUnixPort.h: added utime.h to includeshobbs1999-10-293-1702/+6
| | | | * unix/aclocal.m4: made it just include tcl.m4