summaryrefslogtreecommitdiffstats
path: root/generic/tclIntDecls.h
Commit message (Collapse)AuthorAgeFilesLines
* Make TclInvokeObjectCommand/TclInvokeStringCommand static functions. They ↵jan.nijtmans2023-10-061-14/+6
|\ | | | | | | are not needed/useful for extensions
| * Mark (internal) symbols which are going to be removed in 9.0 with "deprecated"jan.nijtmans2023-10-061-49/+70
| |
* | int -> Tcl_Size for 2 internal functionsjan.nijtmans2023-10-051-4/+4
| |
* | Merge 8.7jan.nijtmans2023-10-041-3/+5
|\ \ | |/
| * Merge 8.6jan.nijtmans2023-10-041-3/+5
| |\
| | * Fix [7371b6270b]: AddressSanitizer use-after-return detection breaks NRE ↵jan.nijtmans2023-10-011-3/+5
| | | | | | | | | | | | tests, coroutines. (patch by chrstphrchvz, with some minor modifications)
| | * Remove ARGSUSED. More type-castsjan.nijtmans2022-11-291-12/+11
| | |
| | * Make TclObjInterpProc a macro (since it always should be used through ↵jan.nijtmans2022-09-221-2/+4
| | | | | | | | | | | | | | | TclGetObjInterpProc()) Add some unused stub entries. Add some more type-casts to tclProc.c
* | | Make TclObjInterpProc() MODULE_SCOPE. Not needed any more in stub tablejan.nijtmans2023-10-041-8/+3
| | |
* | | Fix TclObjInterpProc2 when compiling for Tcl 8.7jan.nijtmans2023-10-041-0/+2
| | |
* | | Merge 8.7jan.nijtmans2023-10-041-26/+29
|\ \ \ | |/ /
| * | Move some (internal) stub entries to lower numbersjan.nijtmans2023-10-041-26/+29
| | |
| * | TIP #666 implementation: Change ptrdiff_t → Tcl_Size in Tcl 8.7 (and 9.0)jan.nijtmans2023-09-111-7/+5
| |\ \
| | * \ Rebase to 8.7jan.nijtmans2023-07-261-6/+5
| | |\ \ | |/ / /
| | * | TIP #666 implementationjan.nijtmans2023-05-031-6/+5
| | | |
* | | | Merge 8.7jan.nijtmans2023-05-211-2/+3
|\ \ \ \ | |/ / /
| * | | int -> Tcl_Size and other (internal) signature improvements. Most of them ↵jan.nijtmans2023-05-191-44/+46
| |/ / | | | | | | | | | backported from 9.0
| * | Use Tcl_GetIntForIndex() in testcases (tclTestObj.c) in stead of ↵jan.nijtmans2023-04-051-2/+2
| | | | | | | | | | | | | | | | | | 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
* | | TIP 660. No compiler warnings. Tests suite pass on Win and Ubuntuapnadkarni2023-03-301-4/+4
| | |
* | | Merge 8.7jan.nijtmans2022-11-281-3/+3
|\ \ \ | |/ /
| * | Use Tcl_Size for ArithSeries.lenjan.nijtmans2022-11-281-3/+3
| | |
* | | Merge 8.7jan.nijtmans2022-11-251-3/+3
|\ \ \ | |/ /
| * | Tcl_NewDoubleObj -> TclNewDoubleObj and Tcl_NewWideIntObj -> TclNewIntObj ↵jan.nijtmans2022-11-251-3/+3
| | | | | | | | | | | | (and similar). Gives more info when debugging
| * | Deprecate TclpHasSockets(): Every system nowadays has socketsjan.nijtmans2022-11-071-2/+3
| | |
* | | Remove TclpHasSockets(): Every system nowadays has socketsjan.nijtmans2022-11-061-5/+3
| | |
* | | Merge 9.0jan.nijtmans2022-09-261-3/+6
|\ \ \
| * \ \ Merge 8.7jan.nijtmans2022-09-191-3/+6
| |\ \ \ | | |/ /
| | * | New (internal) function TclGetObjInterpProc2() and macro TclObjInterpProc2. ↵jan.nijtmans2022-09-191-3/+6
| | | | | | | | | | | | | | | | Will be needed for Itcl (in combination with TIP #626). Should have been part of TIP #627.
* | | | Merge 9.0jan.nijtmans2022-09-171-0/+6
|\ \ \ \ | |/ / /
| * | | Merge 8.7jan.nijtmans2022-09-091-0/+5
| |\ \ \ | | |/ /
| | * | Change TclObjInterpProc() to a macro, since extensions should never invoke ↵jan.nijtmans2022-09-091-0/+2
| | | | | | | | | | | | | | | | it directly, always through TclGetObjInterpProc()
| | * | Merge 8.6 (no need for TclUnusedStubEntry here)jan.nijtmans2022-08-291-5/+3
| | |\ \ | | | |/
| | | * Add 2 unused (internal) stub entriesjan.nijtmans2022-08-291-3/+6
| | | |\
| | | | * Add 2 unused (internal) stub entriesjan.nijtmans2022-08-291-3/+6
| | | | |
* | | | | Merge 9.0jan.nijtmans2022-09-071-0/+12
|\ \ \ \ \ | |/ / / /
| * | | | Merge tip-625jan.nijtmans2022-07-181-0/+12
| |\ \ \ \ | | |/ / /
| | * | | Start on list representation black box testsapnadkarni2022-07-151-0/+12
| | | | |
| | * | | Use "void *" in stead of ClientData in tclInt.decs/tclOO.decls (backported ↵jan.nijtmans2022-06-231-22/+21
| | | | | | | | | | | | | | | | | | | | from 9.0)
| * | | | Fix (internal) TclFindElement() signature (int -> size_t)jan.nijtmans2022-06-201-2/+2
| | | | |
* | | | | Fix TclpGetClicks/TclpGetSeconds's Tcl 8 compabitilityjan.nijtmans2022-06-261-0/+9
| | | | |
* | | | | More Tcl_Sizejan.nijtmans2022-06-201-4/+4
| | | | | | | | | | | | | | | ,
* | | | | More Tcl_Sizejan.nijtmans2022-06-201-45/+45
|/ / / /
* | | | Merge 9.0jan.nijtmans2022-05-251-2/+2
|\ \ \ \
| * \ \ \ Merge 8.7jan.nijtmans2022-05-251-2/+2
| |\ \ \ \ | | |/ / /
| | * | | Deprecate 2 internal typedefs: TclCmdProcType/TclObjCmdProcType. Too little ↵jan.nijtmans2022-05-251-2/+2
| | | | | | | | | | | | | | | | | | | | benefit to keep them
* | | | | Merge 9.0jan.nijtmans2022-05-161-6/+3
|\ \ \ \ \ | |/ / / /
| * | | | Put back Tcl_AppendUnicodeToObj()jan.nijtmans2022-03-251-6/+3
| | | | |
| * | | | Merge 8.7jan.nijtmans2022-03-141-6/+6
| |\ \ \ \ | | |/ / /
| | * | | Eliminate useless "const int" usage, where "const" has no meaning. VC-2015 ↵jan.nijtmans2022-03-141-12/+11
| | | | | | | | | | | | | | | | | | | | has problem when the signatures don't match
| | * | | merge 8.7dgp2021-04-281-4/+6
| | |\ \ \