summaryrefslogtreecommitdiffstats
path: root/generic
Commit message (Collapse)AuthorAgeFilesLines
* Merge trunkapnadkarni2023-04-164-8/+16
|\
| * Fix indentingjan.nijtmans2023-04-151-1/+1
| |
| * Merge 8.7jan.nijtmans2023-04-153-5/+9
| |\
| | * Merge 8.6jan.nijtmans2023-04-153-5/+9
| | |\
| | | * Add one more unused stub entryjan.nijtmans2023-04-153-5/+9
| | | |
| | | * 2 more spelling fixes, but undo fixes in compat/zlib: Please report them ↵jan.nijtmans2023-04-121-1/+1
| | | | | | | | | | | | | | | | upstream, otherwise they will re-appear here every time zlib is updated to a newer version.
| | | * Correct spelling errors in comments and documentation, but also non-comment pooryorick2023-04-1264-286/+286
| | | | | | | | | | | | corrections in history.tcl and tcltest.test.
| | * | int -> Tcl_Size where appropriate in tcl.decls (reducing the diff against ↵jan.nijtmans2023-04-142-18/+18
| | | | | | | | | | | | | | | | Tcl 9.0)
| * | | Fix for [a7a89d422a4f5dd3], Under strict encoding, [gets] returns an error ↵pooryorick2023-04-151-2/+7
| | | | | | | | | | | | | | | | | | | | instead of returning the second line. Also, ensure that position in file does not change if [gets] return an error.
| * | | Fix for [0cd1ae596e709259], under strict encoding, [gets] returns an error evenpooryorick2023-04-141-2/+1
| | | | | | | | | | | | though a complete line is available.
* | | | Merge trunkapnadkarni2023-04-1464-393/+416
|\ \ \ \ | |/ / /
| * | | Allow Tcl build without the Tcl 8 compat API. Derived from "disabletcl8api" ↵jan.nijtmans2023-04-135-19/+46
| |\ \ \ | | | | | | | | | | | | | | | | | | | | branch (thanks, Rolf), but using the already existing -DTCL_NO_DEPRECATED (in Makefile) or CHECKS=nodep (makefile.vc) Since there are Github Action builds with -DTCL_NO_DEPRECATED/CHECKS=nodep, we cannot use the Tcl 8 compat API in the core code itself any more.
| | * \ \ Merged disabletcl8api-win in. Which adds optional Tcl 9 API only to the ↵pointsman2023-04-116-27/+34
| | |\ \ \ | | | | | | | | | | | | | | | | | | windows build with native tools. And fixed the error with Tcl_GetIndexFromObjStruct(). Simplified the mess in tclDecl a bit. All problems with API calls of the core itself up to now hidden by the Tcl 8 compatibility macros are fixed. Thanks, apnadkarni.
| | | * | | Fix compiler warnings and crashes. Builds and passes test suite on Windows ↵apnadkarni2023-04-106-21/+34
| | |/ / / | | | | | | | | | | | | | | | and Ubuntu for 64-bit
| | * | | Experimental branch which adds configure option --disable-tcl8api which ↵pointsman2023-04-091-36/+58
| | | | | | | | | | | | | | | | | | | | builds without the Tcl 8 compatibility API. Atm unix only.
| * | | | Clean up Tcl_SetObjResult().pooryorick2023-04-131-20/+17
| | | | |
| * | | | Remove unnecessary reference count bump in Tcl_ReadObjCmd().pooryorick2023-04-131-3/+0
| | | | |
| * | | | Remove last reference to -nocomplainencoding and fix some spelling errors.pooryorick2023-04-131-2/+2
| | | | |
| * | | | Merge 8.7jan.nijtmans2023-04-132-4/+2
| |\ \ \ \ | | | |/ / | | |/| |
| | * | | cherry-pick from trunk: Remove one unnecesary call to Tcl_SetErrno() in ↵jan.nijtmans2023-04-131-8/+10
| | | | | | | | | | | | | | | | | | | | DoReadChars().
| | * | | Cherry-pick: Rearrange code blocks in DoReadChars to do less work when ↵jan.nijtmans2023-04-121-69/+71
| | | | | | | | | | | | | | | | | | | | returning early
| | * | | Some more int -> Tcl_Size (which is actually the same in 8.7). Backported ↵jan.nijtmans2023-04-123-25/+32
| | | | | | | | | | | | | | | | | | | | from 9.0
| * | | | Remove one unnecesary call to Tcl_SetErrno() in DoReadChars().pooryorick2023-04-131-6/+8
| | | | |
| * | | | Correct the documentation of Tcl_SetObjLength.pooryorick2023-04-121-11/+10
| | | | |
| * | | | Remove unnecessary generation of string representation in DoReadChars.pooryorick2023-04-121-13/+0
| | | | |
| * | | | Rearrange code blocks in DoReadChars to do less work when returning early.pooryorick2023-04-121-26/+31
| | | | |
| * | | | Correct spelling errors in comments and documentation, but also a ↵pooryorick2023-04-1260-290/+293
| |\ \ \ \ | | |/ / / | | | | | | | | | | non-comment corrections in history.tcl and tcltest.test.
| | * | | Correct spelling errors in comments and documentation, but also a non-comment pooryorick2023-04-1261-297/+301
| | | | | | | | | | | | | | | corrections in history.tcl and tcltest.test.
| * | | | More int -> Tcl_Size, so (theoretically) longer lists could be handled. ↵jan.nijtmans2023-04-125-15/+22
| | |/ / | |/| | | | | | | | | | Thanks, Rolf!
* | | | Follow-up to previous commit: Let's not break TIP #627 either. Also adapt ↵jan.nijtmans2023-04-134-5/+5
| | | | | | | | | | | | | | | | documentation (will be needed to be done anyway)
* | | | Proposed fix for [0b9200888e]: TIP #660 breaks TIP #628/#630jan.nijtmans2023-04-111-5/+5
| | | |
* | | | Merge 9.0apnadkarni2023-04-085-88/+81
|\ \ \ \ | |/ / /
| * | | Editorial fix in Tcl_Panic() message.pointsman2023-04-072-2/+2
| | | |
| * | | Further fix for [fa3d9fd818fa0072]. In ChannelState.encoding, NULL no longerpooryorick2023-04-061-40/+34
| | | | | | | | | | | | represents the binary encoding.
| * | | Merge 8.7jan.nijtmans2023-04-052-61/+61
| |\ \ \ | | |/ /
| | * | Use Tcl_GetIntForIndex() in testcases (tclTestObj.c) in stead of ↵jan.nijtmans2023-04-055-96/+99
| | | | | | | | | | | | | | | | | | | | | | | | Tcl_GetWideIntFromObj(). Meant for Ashok, to show that we already have Tcl_GetSizeIntFromObj(). (I already planned this conversion for a long time, thanks, Ashok for reminding me) Also some other cleanups
| | * | Fix for [9ca87e6286262a62], sync fcopy buffers input in ReadChars().pooryorick2023-04-041-5/+7
| | | |
| | * | Backport CHANNEL_PROFILE_GET() usage fix from 9.0jan.nijtmans2023-03-311-9/+4
| | | |
* | | | Fix tclStubInit gcc warnings with TCL_UTF_MAX=3apnadkarni2023-04-051-4/+4
| | | |
* | | | Export Tcl_GetSizeFromObj in stubsapnadkarni2023-04-056-8/+42
| | | |
* | | | Merge 9.0apnadkarni2023-04-0513-102/+148
|\ \ \ \ | |/ / /
| * | | Fix [6390566ecd]: Testcase cmdAH-4.3.13.00DC0000.tail.utf-32.tcl8.a fails ↵jan.nijtmans2023-04-041-0/+5
| | | | | | | | | | | | | | | | sometimes
| * | | Accidental rename from TCL_8_COMPAT to TCL_SIGNED_SIZE in previous commit, ↵jan.nijtmans2023-04-041-1/+1
| | | | | | | | | | | | | | | | so undo that
| * | | TIP #628 addendum (various fixes to improve handling of 8.7 <-> 9.0 header ↵jan.nijtmans2023-04-047-190/+189
| | | | | | | | | | | | | | | | differences)
| * | | Fix for [fa3d9fd818fa0072], [fcopy $chan1 $chan2 -size $size] is not [putspooryorick2023-04-032-37/+64
| | | | | | | | | | | | -nonewline $chan2 [read $chan1 -size $size].
| * | | Fix for [9ca87e6286262a62], sync fcopy buffers input in ReadChars().pooryorick2023-04-031-5/+7
| |\ \ \
| | * | | Fix for [9ca87e6286262a62], sync fcopy buffers input in ReadChars().pooryorick2023-04-031-5/+7
| | | | |
| * | | | Bug [7e3f26c748] - TCL_MEM_DEBUG false positiveapnadkarni2023-04-021-3/+15
| |/ / /
* | | | Fix gcc warnings from prior 9.0 mergeapnadkarni2023-04-011-2/+4
| | | |
* | | | Merge 9.0jan.nijtmans2023-04-0126-95/+91
|\ \ \ \ | |/ / /