Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | see changes | hobbs | 2001-09-07 | 1 | -0/+14 |
| | |||||
* | * doc/http.n: noted -binary, charset and coding state keys. | hobbs | 2001-09-07 | 4 | -45/+88 |
| | | | | | | | | | | * tests/http.test: * library/http/pkgIndex.tcl: * library/http/http.tcl (geturl): correctly get charset parameter and convert text according to specified encoding (if known). RFC iso8859-1 is used by default. Also recognize Content-encoding to see if we should do binary translation. Added a CYA -binary switch for the cases that were missed. [Bug #219211 #219399] | ||||
* | * tests/ioUtil.test: changed to make better use of constraints and | hobbs | 2001-09-06 | 1 | -87/+81 |
| | | | | remove knownBug constraints that weren't valid. | ||||
* | * Updated test to support | dgp | 2001-09-06 | 2 | -5/+15 |
| | | | | | | newer HP-UX releases that properly report euc-jp as the system encoding for Japanese. Bug report and patch verification by Bob Techentin. [Bug 453883] | ||||
* | fs | vincentdarley | 2001-09-06 | 7 | -29/+117 |
| | |||||
* | no message | davygrvy | 2001-09-06 | 1 | -0/+3 |
| | |||||
* | * win/tclWinTime.c: More Borland compatibility fixes. | davygrvy | 2001-09-06 | 1 | -2/+5 |
| | | | | [Patch: 436116] | ||||
* | no message | davygrvy | 2001-09-06 | 1 | -1/+1 |
| | |||||
* | * generic/tclAlloc.c: Small Borland compatibility fix. | davygrvy | 2001-09-06 | 1 | -2/+2 |
| | |||||
* | Changes due to TIP#49 "Tcl_OutputBuffered" from Rolf Schroedter | dkf | 2001-09-06 | 5 | -50/+72 |
| | |||||
* | no message | davygrvy | 2001-09-06 | 1 | -0/+2 |
| | |||||
* | Borland lives once more! rejoice.. | davygrvy | 2001-09-06 | 1 | -0/+551 |
| | |||||
* | no message | davygrvy | 2001-09-06 | 1 | -1/+4 |
| | |||||
* | changed EDQUOT #define from 49 to 69. Borland had a clash as it | davygrvy | 2001-09-06 | 1 | -2/+2 |
| | | | | | was already using this number. Upon advice from Helmut Giese, EDQUOT has been found in other header files #defined as 69. | ||||
* | no message | davygrvy | 2001-09-06 | 1 | -1/+2 |
| | |||||
* | * win/tclWinPort.c: More Borland compatibility fixes. | davygrvy | 2001-09-06 | 1 | -16/+25 |
| | | | | [Patch: 436116] | ||||
* | no message | davygrvy | 2001-09-06 | 1 | -0/+2 |
| | |||||
* | * win/.cvsignore: A few more glob patterns added. | davygrvy | 2001-09-06 | 1 | -0/+4 |
| | |||||
* | no message | davygrvy | 2001-09-06 | 1 | -1/+5 |
| | |||||
* | * win/tclWinPipe.c: More Borland compatibility fixes. | davygrvy | 2001-09-06 | 1 | -2/+5 |
| | | | | [Patch: 436116] | ||||
* | no message | davygrvy | 2001-09-06 | 1 | -0/+4 |
| | |||||
* | * generic/tclPlatDecls.h: Another small trim finalizing Borland support. | davygrvy | 2001-09-06 | 1 | -13/+13 |
| | |||||
* | * generic/tclPlatDecls.h: Another small trim finalizing Borland support. | davygrvy | 2001-09-06 | 1 | -13/+14 |
| | |||||
* | winFCmd.test fix | vincentdarley | 2001-09-05 | 2 | -6/+16 |
| | |||||
* | no message | davygrvy | 2001-09-05 | 1 | -0/+12 |
| | |||||
* | * generic/tcl.h: Removed a small mistake from before. Changes to | davygrvy | 2001-09-05 | 1 | -11/+11 |
| | | | | | | | | | | | | | the EXTERN macro for proper Borland compatibility will have to see a TIP. What's this with the MS compiler: __declspec(dllexport) int func (int a, int b); will have to be this with Borland: int __cdecl __export func (int a, int b); The order of the attribute needs to be after the return type. | ||||
* | no message | davygrvy | 2001-09-05 | 1 | -2/+4 |
| | |||||
* | * generic/tcl.h: | davygrvy | 2001-09-05 | 1 | -3/+7 |
| | | | | | | * generic/tclPlatDecls.h: Borland compatibility change so ClientData was properly typed as a void* and TCHAR would not be defined twice. | ||||
* | no message | davygrvy | 2001-09-05 | 1 | -3/+7 |
| | |||||
* | * generic/tcl.h: Borland compatibility change so ClientData was | davygrvy | 2001-09-05 | 1 | -2/+2 |
| | | | | properly typed as a void* | ||||
* | no message | davygrvy | 2001-09-05 | 1 | -0/+6 |
| | |||||
* | * tclWinThrd.c: Revisited _beginthreadex() stuff. Instead of assuming | davygrvy | 2001-09-05 | 1 | -9/+10 |
| | | | | | a c-runtime implimentation of _beginethreadex normal, I reversed the logic to not assume, and use when is. | ||||
* | * Fixed failure to handle expressions | dgp | 2001-09-04 | 2 | -2/+12 |
| | | | | like 3eq2 and failure to set errno on overflow. [Bug 440894] | ||||
* | correction to last Changelog entry: forgot to mention the test. | Miguel Sofer | 2001-09-04 | 1 | -1/+3 |
| | |||||
* | made [proc] check that formal args have simple names [Bug: 458548] | Miguel Sofer | 2001-09-04 | 3 | -3/+21 |
| | |||||
* | minor fs, vfs fixes | vincentdarley | 2001-09-04 | 29 | -320/+774 |
| | |||||
* | fixed incorrect opreands for INST_LIST [Bug: 458241] | Miguel Sofer | 2001-09-04 | 2 | -2/+7 |
| | |||||
* | * generic/tclExecute.c (TclExecuteByteCode): fixed missing comma | hobbs | 2001-09-03 | 2 | -2/+7 |
| | | | | in debug macro. | ||||
* | doc bugfix (bug #457435) | dkf | 2001-09-03 | 2 | -3/+8 |
| | |||||
* | correct to note tclInt.h change instead of tcl.h for TclCompileListCmd header | hobbs | 2001-09-03 | 1 | -1/+1 |
| | |||||
* | no message | davygrvy | 2001-09-03 | 1 | -0/+4 |
| | |||||
* | * win/tclWinThrd.c: Moved FinalizeConditionEvent() proto to within | davygrvy | 2001-09-03 | 1 | -3/+5 |
| | | | | | the main #ifdef TCL_THREADS block to avoid mingw warning about it being there but unused. | ||||
* | no message | davygrvy | 2001-09-03 | 1 | -0/+7 |
| | |||||
* | * win/makefile.vc: Added -Zl (zee el) to tclStubLib.c compile line | davygrvy | 2001-09-03 | 1 | -2/+2 |
| | | | | | | | | to make sure the tclstub84.lib static library is built without requiring a specific C-runtime library at link-time for the end-use developer. It has been noted on c.l.t that this trips many first time users trying to make extensions. [Patch: 403533] | ||||
* | no message | davygrvy | 2001-09-03 | 1 | -0/+1 |
| | |||||
* | * win/tclWinThrd.c: Portability fix for Cygwin who's c-runtime, | davygrvy | 2001-09-03 | 1 | -1/+15 |
| | | | | | | not surprisingly, doesn't have the MSVCRT specific _beginthreadex / _endthreadex pair. This might have to be revisited for proper Borland, lcc32, Watcom and other support as well. | ||||
* | no message | davygrvy | 2001-09-03 | 1 | -0/+7 |
| | |||||
* | * generic/tcl.h: added TclCompileListCmd header | hobbs | 2001-09-01 | 5 | -7/+116 |
| | | | | | | | | * generic/tclBasic.c: added TclCompileListCmd compile proc * generic/tclCompCmds.c (TclCompileListCmd): function to compile the 'list' command at parse time. * generic/tclExecute.c (TclExecuteByteCode): definition of INST_LIST bytecode. | ||||
* | * doc/StringObj.3: added words of warning to use Tcl_ResetResult | hobbs | 2001-08-31 | 2 | -17/+8 |
| | | | | with the Tcl_Append* functions. | ||||
* | * tests/compile.test: added compile-11.* interp result checks | hobbs | 2001-08-31 | 3 | -16/+58 |
| | | | | | | | | | * generic/tclUtil.c (TclGetIntForIndex): added Tcl_ResetResult before Tcl_AppendStringsToObj to prevent shared object crash when called from bcc instruction. The Tcl_Append* calls that append to the result object that are invoked by bcc insts must remember to call Tcl_ResetResult because the bcc doesn't do this for us. [Bug #456892] |