summaryrefslogtreecommitdiffstats
path: root/generic/tclDecls.h
Commit message (Collapse)AuthorAgeFilesLines
* Convert Tcl_BacktroundError() into a macro, so we can deprecate the stub ↵jan.nijtmans2019-02-091-2/+5
| | | | | entry for it. Add -Wpointer-arith warning to CFLAGS
* If compiled with -DTCL_NO_DEPRECATED, remove ↵jan.nijtmans2018-12-121-3/+3
| | | | | Tcl_NewIntObj/Tcl_NewLongObj/Tcl_DbNewLongObj from stub table, as they will be gone in 9.0 (converted to a macro) Use Tcl_WideInt's directly in more places, diminishing the possibility of inadvent overflow.
* Make TclFreeObj MODULE_SCOPE, so the only way to access it is through the ↵jan.nijtmans2018-11-271-5/+4
| | | | stub table, for backwards-compatible stub-enabled extensions
* Implement TIP #512: No stub for Tcl_SetExitProc()jan.nijtmans2018-11-151-5/+5
|\
| * Merge 8.7jan.nijtmans2018-11-021-2/+2
| |\
| * \ Merge 8.7jan.nijtmans2018-10-181-0/+26
| |\ \ | | |/
| * | Merge 8.7jan.nijtmans2018-08-081-53/+76
| |\ \
| * | | TIP #512 implementationjan.nijtmans2018-06-251-3/+3
| | | |
* | | | merge 8.7dgp2018-11-061-8/+37
|\ \ \ \
| * \ \ \ merge 8.7dgp2018-10-181-67/+116
| |\ \ \ \ | | | |_|/ | | |/| |
| * | | | merge 8.7dgp2018-04-251-10/+10
| |\ \ \ \ | | | |/ / | | |/| |
| * | | | merge 8.7dgp2018-02-061-6/+11
| |\ \ \ \
| * \ \ \ \ merge 8.7dgp2018-01-181-106/+106
| |\ \ \ \ \
| * \ \ \ \ \ merge 8.7dgp2017-11-291-10/+15
| |\ \ \ \ \ \
| * \ \ \ \ \ \ merge 8.7dgp2017-11-141-4/+6
| |\ \ \ \ \ \ \
| * \ \ \ \ \ \ \ merge trunkdgp2017-09-141-0/+9
| |\ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ merge trunkdgp2017-03-291-2/+2
| |\ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ \ merge trunkdgp2017-03-201-5/+28
| |\ \ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ \ \ merge trunkdgp2017-03-131-2/+2
| |\ \ \ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ \ \ \ merge trunkdgp2017-01-271-0/+16
| |\ \ \ \ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ \ \ \ \ merge trunkdgp2017-01-121-15/+29
| |\ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | New routine Tcl_HasStringRep() and first conversion of callers.dgp2016-10-071-0/+5
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Revised design - have Tcl_FetchIntRep return a writable pointer.dgp2016-03-271-0/+13
| |\ \ \ \ \ \ \ \ \ \ \ \ \ \
| | * | | | | | | | | | | | | | First demonstration conversion to the new intrep manipulation routines.dgp2016-03-251-2/+2
| | | | | | | | | | | | | | | |
| | * | | | | | | | | | | | | | New routines Tcl_FetchIntRep() and Tcl_StoreIntRep().dgp2016-03-251-0/+13
| |/ / / / / / / / / / / / / /
| * | | | | | | | | | | | | | Revise Tcl_InitStringRep(); numBytes is unsigned. Only truncation permitted.dgp2016-03-231-2/+2
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | Next step: new routine Tcl_InitStringRep()dgp2016-03-231-0/+6
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | First simple step implementing TIP 445.dgp2016-03-221-0/+5
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Draft implementation of TIP 506 - rebased to Tcl 8.7dgp2018-10-271-2/+18
| |_|_|_|_|_|_|_|_|_|_|_|/ / |/| | | | | | | | | | | | |
* | | | | | | | | | | | | | More regularizing of function names, field names and testing stylesdkf2018-10-061-10/+11
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Improvements for zipfs. Document that TclZipfs_AppHook only works on Windows ↵jan.nijtmans2018-09-261-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | in UNICODE mode. Also, remove this from the stub table because it should never be called this way. Prevent a possible crash on win32 startup.
* | | | | | | | | | | | | | Merging changes with 8.7hypnotoad2018-08-141-53/+76
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | |_|_|_|_|_|_|_|_|_|_|_|/ | |/| | | | | | | | | | | |
| * | | | | | | | | | | | | Merge 8.6. Also remove a useless #undef/#define which will be overrided later.jan.nijtmans2018-07-051-3/+0
| |\ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | Make Tcl_GetUnicode() a macro. Mark many other stub-entries which are no ↵jan.nijtmans2018-07-041-50/+76
| | |_|_|_|_|_|_|_|_|_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | longer are in use (because they were converted to macros) as deprecated, since they will be removed in Tcl 9.0
* | | | | | | | | | | | | | merge 8.7dgp2018-04-271-10/+10
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / /
| * | | | | | | | | | | | | merge 8.7dgp2018-03-151-6/+11
| |\ \ \ \ \ \ \ \ \ \ \ \ \ | | | |_|_|_|_|_|_|_|_|_|_|/ | | |/| | | | | | | | | | |
| * | | | | | | | | | | | | merge 8.7dgp2018-01-181-106/+106
| |\ \ \ \ \ \ \ \ \ \ \ \ \ | | | |_|_|_|_|_|_|_|_|_|_|/ | | |/| | | | | | | | | | |
| * | | | | | | | | | | | | Fix executable flagsjan.nijtmans2017-11-201-0/+0
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | merge core-8-branchjan.nijtmans2017-11-201-0/+0
| |\ \ \ \ \ \ \ \ \ \ \ \ \ | | | |_|_|_|_|_|_|_|_|_|_|/ | | |/| | | | | | | | | | |
| * | | | | | | | | | | | | merge core-8-branchjan.nijtmans2017-11-171-14/+21
| |\ \ \ \ \ \ \ \ \ \ \ \ \ | | |/ / / / / / / / / / / /
| * | | | | | | | | | | | | Somewhat simplified implementation of TIP #389, in which the "string length" ↵jan.nijtmans2017-11-071-10/+10
| | |_|_|_|_|_|_|_|_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | if characters > U+FFFF is considered to be 2, not 1.
* | | | | | | | | | | | | merge 8.7dgp2018-03-071-112/+117
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | |_|_|/ / / / / / / / / | |/| | | | | | | | | | |
| * | | | | | | | | | | | Rename (internal) TclNewWideObj macro to TclNewIntObj. Change ↵jan.nijtmans2018-01-261-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Tcl_SetIntObj/Tcl_SetLongObj to macro's referencing Tcl_SetWideIntObj (since all of those do the same now)
| * | | | | | | | | | | | Merge core-8-branch. Also some minor performance improvement: Turn ↵jan.nijtmans2018-01-261-4/+7
| | |_|/ / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Tcl_NewLongObj/Tcl_NewIntObj/Tcl_DBNewLongObj into macro's refering to their WideInt equivalent, since all of those do exactly the same now.
| * | | | | | | | | | | Deprecate support for macro's like CONST, CONST84, _ANSI_ARGS_, INLINE, ↵jan.nijtmans2017-11-201-94/+87
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | TCL_VARARGS
| * | | | | | | | | | | merge core-8-branch. Deprecate support for "string bytelength"jan.nijtmans2017-11-201-14/+21
| |\ \ \ \ \ \ \ \ \ \ \ | | | |/ / / / / / / / / | | |/| | | | | | | | |
| * | | | | | | | | | | Merge core-8-branch. Backout the Tcl_EvalFile changes.jan.nijtmans2017-11-091-3/+0
| |\ \ \ \ \ \ \ \ \ \ \ | | | |/ / / / / / / / / | | |/| | | | | | | | |
| * | | | | | | | | | | No longer mark Tcl_EvalFile() as obsolete/deprecated. Thanks to all feedback ↵jan.nijtmans2017-11-091-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to TIP #485!
| * | | | | | | | | | | Put Tcl_EvalFile back, but then as a macro in terms of Tcl_FSEvalFileEx().jan.nijtmans2017-11-091-0/+3
| | | | | | | | | | | |
| * | | | | | | | | | | TIP #485 implementation: "Remove Deprecated API". Based on Tcl 8.7 ↵jan.nijtmans2017-11-081-16/+24
| |/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (core-8-branch).