summaryrefslogtreecommitdiffstats
path: root/generic/tclCmdIL.c
Commit message (Expand)AuthorAgeFilesLines
* New macro TclNewIndexObj(). For Tcl 8.7 it's the same as TclNewIntObj(), but ...jan.nijtmans2021-12-211-18/+18
|\
* \ Merge 8.6. Make c++ compile (with g++-11) warning-freejan.nijtmans2021-05-271-1/+1
|\ \ | |/
| * Fix "possibly uninitialized variable" warning, seen with gcc-11 (however harm...jan.nijtmans2021-05-271-1/+1
| * More implicit type-casts, for better compatibility with C++jan.nijtmans2021-02-051-21/+21
| * Get rid of "register" keyword, forbidden in c++20.jan.nijtmans2020-11-261-13/+13
* | Rename MODULESCOPE TclGetLoadedPackagesEx() to TclGetLoadedLibraries()jan.nijtmans2021-03-221-1/+1
* | Add -finput-charset=UTF-8 and -fextended-identifiers to gcc (and clang). All ...jan.nijtmans2020-12-081-6/+6
* | 3 times -1 -> TCL_INDEX_NONEjan.nijtmans2020-10-181-1/+1
* | Merge 8.6jan.nijtmans2020-10-131-1/+1
|\ \ | |/
| * More usage of TclNewObj() in stead of Tcl_NewObj() and TclNewIntObj() in stea...jan.nijtmans2020-10-131-11/+12
* | Fix -Wshadow warnings, when compiling with a C++ compilerjan.nijtmans2020-10-021-2/+2
* | Eliminate many usages of Tcl_NewObj (-> TclNewObj) and Tcl_NewIntObj (-> TclN...jan.nijtmans2020-09-171-19/+25
* | Merge 8.6jan.nijtmans2020-09-011-1/+1
|\ \ | |/
* | Merge 8.6. More documentation updatesjan.nijtmans2020-08-311-1/+1
|\ \ | |/
| * Implement TIP #581: Master/Slavejan.nijtmans2020-08-311-1/+1
* | Merge 8.6jan.nijtmans2020-05-111-2/+2
|\ \ | |/
| * occurance -> occurrence.jan.nijtmans2020-05-111-2/+2
* | Fix [fad64a857e76f98e]: "lsearch" provides wrong errorCode with bad -stride ...jan.nijtmans2020-05-071-1/+1
* | Merge 8.6jan.nijtmans2020-05-051-3/+3
|\ \ | |/
| * More usage of TclUtfToUCS4(), so we can use the whole Unicode range better in...jan.nijtmans2020-05-051-5/+5
* | close [234d6c811d]: fixed segfault on empty list variable by "lpop" without i...sebres2020-03-111-0/+8
* | More TCL_UNUSED().dgp2020-03-061-122/+60
* | Better error-message in case of "index out of range", mentioning the actual i...jan.nijtmans2020-02-291-4/+4
* | Implement TIP #557: C++ support for Tcljan.nijtmans2020-02-281-32/+73
|\ \
| * \ Merge 8.7jan.nijtmans2020-02-131-2/+20
| |\ \
| * \ \ Merge tip-548jan.nijtmans2019-08-291-8/+49
| |\ \ \
| * \ \ \ Merge tip-548jan.nijtmans2019-08-151-14/+14
| |\ \ \ \ | | |/ / /
| * | | | Merge 8.7, and continue implementation. Almost donejan.nijtmans2019-07-101-20/+20
| |\ \ \ \
| * | | | | Experiment: compile Tcl with C++ compiler. WIPjan.nijtmans2019-07-041-3/+3
| |/ / / /
* | | | | Merge 8.6jan.nijtmans2020-02-261-3/+3
|\ \ \ \ \ | |_|_|/ / |/| | | / | | |_|/ | |/| |
| * | | Resolve a number of shadowed variables (discovered by compiling with -Wshadow)jan.nijtmans2020-02-261-3/+3
* | | | merge 8.6sebres2020-01-171-2/+20
|\ \ \ \ | |/ / / | | | / | |_|/ |/| |
| * | merge 8.5 (closes [5d989f9ba3]: avoid segfault by OOM if too many items to sort)sebres2020-01-171-2/+20
| |\ \
| | * | closes [5d989f9ba3]: avoid segfault by OOM if too many items to sort (would t...sebres2020-01-171-2/+20
* | | | Eliminate "register" keyword _everywhere_ in Tcl. This keyword is deprecated ...jan.nijtmans2019-07-171-14/+14
| |_|/ |/| |
* | | Fix [15d851e394]: Fix spelling in comment of tclCmdIL.cjan.nijtmans2019-06-271-1/+1
|\ \ \ | |/ /
| * | Fix [15d851e394]: Fix spelling in comment of tclCmdIL.cjan.nijtmans2019-06-271-1/+1
| * | end-of-line spacingjan.nijtmans2019-05-241-1/+1
| |\ \ | | |/
* | | Make more clear that TCL_INDEX_END|TCL_INDEX_NONE not necessary are int's (in...jan.nijtmans2019-05-081-21/+19
* | | Plug memleak in [lpop] due to mishandling the unconventional recountingdgp2019-04-241-3/+6
* | | Style corrections and warning eliminationdkf2019-04-181-1/+1
* | | Tests, and reduce number of copies.dkf2019-03-301-7/+29
* | | Implementation of [lremove].dkf2019-03-301-0/+114
* | | Clamp output of TclIndexDecode() between -1 (TCL_INDEX_NONE) and INT_MAX. Use...jan.nijtmans2019-01-181-3/+10
* | | More TIP #502 optimizations and improvements, preparing further for the road ...jan.nijtmans2019-01-161-7/+7
* | | Internal minor optimization of TIP #502 implementation. No difference in any ...jan.nijtmans2018-12-181-9/+8
* | | If compiled with -DTCL_NO_DEPRECATED, remove Tcl_NewIntObj/Tcl_NewLongObj/Tcl...jan.nijtmans2018-12-121-21/+21
* | | Implement TIP 523dkf2018-11-061-0/+90
|\ \ \
| * | | Simplify to only accept index arguemnts. No index list.pspjuth2018-10-241-11/+4
| * | | Implement TIP 523, New lpop commandpspjuth2018-10-221-0/+97