summaryrefslogtreecommitdiffstats
path: root/generic/tclResult.c
Commit message (Collapse)AuthorAgeFilesLines
* Merge 8.7jan.nijtmans2022-02-101-4/+4
|\
| * Merge 8.6jan.nijtmans2022-02-101-4/+4
| |\
| | * Use TclListObjLength/TclListObjGetElements in stead of ↵jan.nijtmans2022-02-101-4/+4
| | | | | | | | | | | | Tcl_ListObjLength/Tcl_ListObjGetElements everywhere. This is slightly more efficient if the refered list already has the correct type
| | * Tcl_NewObj() -> TclNewObj()jan.nijtmans2022-01-171-4/+6
| | |
| | * IntRep -> InternalRep. Internal changes only.jan.nijtmans2021-10-191-1/+1
| | |
* | | Merge 8.7jan.nijtmans2021-10-081-2/+2
|\ \ \ | |/ /
| * | Change "IntRep" to "InternalRep", as discussed in the Tcl Core mailing listjan.nijtmans2021-10-061-2/+2
| | |
| * | Unbreak buildjan.nijtmans2021-04-131-1/+1
| | |
| * | Fix [f566e1c817]: macOS: -DTCL_NO_DEPRECATEDjan.nijtmans2021-04-121-1/+6
| | |
* | | Merge 8.7, resolve conflictsjan.nijtmans2021-01-111-2/+2
|\ \ \ | |/ /
* | | Merge 8.7jan.nijtmans2020-12-081-1/+1
|\ \ \ | |/ /
| * | Add -finput-charset=UTF-8 and -fextended-identifiers to gcc (and clang). All ↵jan.nijtmans2020-12-081-1/+1
| | | | | | | | | | | | C sources can now use UTF-8, as far as gcc/clang/msvc support it. Not used yet
| * | Merge 8.6jan.nijtmans2020-09-281-4/+4
| |\ \ | | |/
| | * Eliminate many "register" keywords (which do nothing with modern compilers)jan.nijtmans2020-09-141-14/+14
| | | | | | | | | Eliminate many unnecessary type-casts to (unsigned)
* | | Merge 8.7jan.nijtmans2020-09-171-7/+8
|\ \ \ | |/ /
| * | Eliminate many usages of Tcl_NewObj (-> TclNewObj) and Tcl_NewIntObj (-> ↵jan.nijtmans2020-09-171-9/+11
| | | | | | | | | | | | TclNewIntObj or Tcl_NewWideIntObj)
| * | Merge 8.6jan.nijtmans2020-04-141-1/+10
| |\ \ | | |/
| | * Merge 8.5. Failing tests highlight ticket [1b1f5f0b53].dgp2020-04-131-1/+10
| | |\
| | | * Same trouble fixed the same way in Tcl_AppendElement().dgp2020-04-091-1/+10
| | | |
| | * | Use _copysign on Windows always (available from float.h). Use mp_iszero() ↵jan.nijtmans2020-01-081-2/+2
| | |\ \ | | | |/ | | | | | | | | whenever appropriate.
| | | * * generic/tclResult.c (ResetObjResult): Correct failure to cleardgp2011-03-081-5/+7
| | | | | | | | | | | | invalid intrep. Thanks to Colin McDonald. [Bug 3202905]
* | | | Merge 8.7jan.nijtmans2020-02-281-4/+4
|\ \ \ \ | |/ / /
| * | | Merge 8.7jan.nijtmans2020-02-131-4/+2
| |\ \ \
| | * | | TIP #559 follow-up: Make sure that if Tcl_FreeResult() is used in an ↵jan.nijtmans2020-01-251-4/+2
| | | | | | | | | | | | | | | | | | | | | | | | | extension compiled with -DTCL_NO_DEPRECATED, this results in a link error. Do the same with deprecated funcions from other TIP's.
| * | | | Merge 8.7jan.nijtmans2020-01-071-19/+13
| |\ \ \ \ | | |/ / /
| * | | | Merge tip-548jan.nijtmans2019-08-151-13/+13
| |\ \ \ \
| * \ \ \ \ Merge 8.7. Continue implementation for win32jan.nijtmans2019-08-021-4/+4
| |\ \ \ \ \
| * | | | | | Merge 8.7, and continue implementation. Almost donejan.nijtmans2019-07-101-9/+9
| | | | | | |
* | | | | | | Implement TIP 559dgp2020-01-131-30/+0
| | | | | | |
* | | | | | | Merge 8.7jan.nijtmans2020-01-071-2/+2
|\ \ \ \ \ \ \ | | |_|_|/ / / | |/| | | | |
| * | | | | | Some eol whitespace eliminationsjan.nijtmans2020-01-071-2/+2
| | | | | | |
* | | | | | | Merge 8.7jan.nijtmans2020-01-061-19/+13
|\ \ \ \ \ \ \ | |/ / / / / /
| * | | | | | Merge 8.6jan.nijtmans2020-01-061-19/+13
| |\ \ \ \ \ \ | | |_|_|/ / / | |/| | | / / | | | |_|/ / | | |/| | |
| | * | | | Fix documentation, comments, and argument names of Tcl_TransferResult().dgp2020-01-051-19/+13
| | | | | |
* | | | | | Merge 8.7jan.nijtmans2019-08-151-10/+10
|\ \ \ \ \ \ | |/ / / / /
| * | | | | Merge 8.7jan.nijtmans2019-08-141-4/+4
| |\ \ \ \ \ | | | |_|/ / | | |/| | |
| | * | | | Eliminate the use of C++ keywords as variable names. Nothing more than ↵jan.nijtmans2019-07-231-4/+4
| | | |/ / | | |/| | | | | | | | | | | | rename the variables in something else.
| * | | | Eliminate "register" keyword _everywhere_ in Tcl. This keyword is deprecated ↵jan.nijtmans2019-07-171-13/+13
| |/ / / | | | | | | | | | | | | in C++ (removed in C++17, even), and essentially does nothing with most modern compilers.
* | | | Merge 8.7. Define Tcl_GetStringResult() as macro.jan.nijtmans2019-05-091-26/+0
|\ \ \ \ | |/ / /
| * | | If compiling with -DTCL_NO_DEPRECATED, make Tcl_GetStringResult() a macro. ↵jan.nijtmans2019-05-091-5/+1
| | | | | | | | | | | | | | | | | | | | This opens up one more simplification for Tcl 9. Compile the load-test dll's/so's with -DTCL_NO_DEPRECATED
| * | | More use of (efficient) TclHasIntRep() macro. Also eliminate many (size_t) ↵jan.nijtmans2019-02-271-1/+1
| | | | | | | | | | | | | | | | and (unsigned) type-casts, which don't make sense any more.
* | | | Code cleanup: Remove unneeded #undef's, and unneeded inclused. No change in ↵jan.nijtmans2019-03-241-2/+0
| | | | | | | | | | | | | | | | functionality.
* | | | More size_t-related consolidations. Now regexp can handle strings >2GB and ↵jan.nijtmans2019-02-051-4/+7
| | | | | | | | | | | | | | | | more. Remove many type-casts which are not necessary any more.
* | | | Another (big) round of int -> size_t enhancements. So Tcl can handle string ↵jan.nijtmans2019-02-011-1/+1
|\ \ \ \ | |/ / / | | | | | | | | >2GiB in more places.
* | | | Change ckalloc and friends to Tcl_Alloc and friends. Add two defines, ↵jan.nijtmans2018-09-011-3/+3
| | | | | | | | | | | | | | | | TCL_IO_FAILURE and TCL_NO_LENGTH (experimental, still open to be renamed following discussion)
* | | | Merge 8.7jan.nijtmans2018-07-041-143/+0
|\ \ \ \ | |/ / /
| * | | Take the next step in TIPs 330 and 336, ending in 8.7 the USE_INTERP_RESULT anddgp2018-03-051-17/+0
| | | | | | | | | | | | USE_INTERP_ERRORLINE directives to escape need to migrate to 8.6 interfaces.
* | | | Re-base TIP #422 implementation to trunk. Remove Tcl_VarEvalVA() as well. ↵jan.nijtmans2017-11-071-75/+28
|\ \ \ \ | | | | | | | | | | | | | | | TIP #422 is adapted accordingly.
| * \ \ \ TIP 422 implementation (rebase of branch novem-remove-va to trunk).dgp2017-11-011-92/+28
| |\ \ \ \ | | |/ / / | |/| | |
| | * | | merge novemjan.nijtmans2013-03-061-102/+2
| | |\ \ \