| Commit message (Collapse) | Author | Age | Files | Lines |
|\ |
|
| |
| |
| |
| | |
C sources can now use UTF-8, as far as gcc/clang/msvc support it. Not used yet
|
|\ \
| |/ |
|
| | |
|
| |\ |
|
| | | |
|
|\ \ \
| | |/
| |/| |
|
| |\ \
| | |/
| | | |
Bring back Tcl_InitSubsystems to what Tcl_InitSubsystems was: without additional parameters or additional functionality
|
| |\ \
| | | |
| | | |
| | | | |
can take over the function of Tcl_InitSubsystems, just by changing its return value. TIP-512 description still to be adapted accordingly.
|
| |\ \ \ |
|
|\ \ \ \ \
| | |_|_|/
| |/| | |
| | | | | |
Fix Tcl_InitStringRep() signature in line with TIP #494, so it can handle lengths >2Gb on 64-bit platforms
Various other code cleanups, unnecessary type-casts e.o.
|
| | |_|/
| |/| | |
|
|\ \ \ \
| |/ / / |
|
| | |/
| |/|
| | |
| | | |
Tcl_SetPanicProc is a macro (normally it isn't)
|
| | |
| | |
| | |
| | | |
warning.
|
|\ \ \
| |/ / |
|
| |/
| |
| |
| | |
implementation.
|
| |
| |
| |
| | |
build broken on Win. (tested on Visual Studio 2017)
|
| |
| |
| |
| | |
obsolete 8.4 bytecodes. And a few other (internal) macro's which are no longer in use.
|
|\ \
| |/
|/| |
|
| |
| |
| |
| | |
Tcl_SetErrorCodeVA, Tcl_PanicVA, and dependancy of tcl.h on <stdarg.h>. TIP required.
|
| | |
|
| |
| |
| |
| | |
optimizations by the C-compiler.
|
| | |
|
|\ \
| |/
|/| |
On Cygwin, Tcl_SetPanicProc(NULL) should set back the panic proc to its default, which is not NULL.
|
| |
| |
| | |
low memory handler See: [#1446864]
|
| | |
|
|\ \
| |/
| |
| | |
Implement TclWinGetTclInstance, TclpGetTZName,
and various others for Cygwin
|
|\ \
| |/
| | |
cause more harm than good. Purged them (except in zlib files).
|
| |\
| | |
| | | |
more harm than good. Purged them.
|
| | |
| | |
| | | |
more harm than good. Purged them.
|
| | |
| | |
| | |
| | | |
Save arguments about it for another day.
|
| | |
| | |
| | |
| | |
| | |
| | | |
at the end, to insure that a panic cannot return even if the
actual procedure was overriden by a Tcl_SetPanicProc() call. Bug
caught by looking at Coverity's analysis.
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | | |
MSVC has it.
|
| | |
| | |
| | |
| | | |
Better communication with debugger, if present.
|
| | |
| | |
| | |
| | | |
[Patch 3124554] use ExitProcess() here, like in wish.
|
| | |
| | |
| | |
| | | |
Undocumented feature, see [Patch 3124554]: Move WishPanic from Tk to Tcl.
|
| | | |
|
| | | |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* generic/tclPanic.c: analyzer and redefine Tcl_Panic to
* generic/tclStubInit.c: assert after panic in clang PURIFY
builds.
* generic/tclCmdIL.c: add clang assert for false positive
from static analyzer.
|
| | | |
|
|/ / |
|
| |
| |
| |
| | |
might exist for a Tcl_Panic that returns.
|
| |
| |
| |
| |
| |
| | |
at the end, to insure that a panic cannot return even if the
actual procedure was overriden by a Tcl_SetPanicProc() call. Bug
caught by looking at Coverity's analysis.
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* generic/tclBasic.c: conventions for functions with variable number
* generic/tclInt.h: of arguments. Support for varargs.h has been
* generic/tclPanic.c: implicitly gone for some time now. All
* generic/tclResult.c: TCL_VARARGS* macros purged from Tcl sources,
* generic/tclStringObj.c: leaving only some deprecated #define's
* tools/genStubs.tcl: in tcl.h for the sake of older extensions.
* generic/tclDecls.h: make genstubs
* doc/AddErrInfo.3: Replaced all documented requirement for use
* doc/Eval.3: of TCL_VARARGS_START() with requirement for
* doc/Panic.3: use of va_start().
* doc/SetResult.3:
* doc/StringObj.3:
|
| | |
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* generic/tclInt.h: Reworked the Tcl header files into a clean
* unix/tclUnixPort.h: hierarchy where tcl.h < tclPort.h < tclInt.h
* win/tclWinInt.h: and every C source file should #include
* win/tclWinPort.h: at most one of those files to satisfy its
declaration needs. tclWinInt.h and tclWinPort.h also better organized
so that tclWinPort.h includes the Windows implementation of
cross-platform declarations, while tclWinInt.h makes declarations that
are available on Windows only.
* generic/tclBinary.c (TCL_NO_MATH): Deleted the generic/tclMath.h
* generic/tclMath.h (removed): header file. The internal Tcl
* macosx/Makefile (PRIVATE_HEADERS): header, tclInt.h, has a
* win/tcl.dsp: #include <math.h> directly,
and file external to Tcl needing libm should do the same.
* win/Makefile.in (WIN_OBJS): Deleted the win/tclWinMtherr.c file.
* win/makefile.bc (TCLOBJS): It's a vestige from matherr() days
* win/makefile.vc (TCLOBJS): gone by.
* win/tcl.dsp:
* win/tclWinMtherr.c (removed):
|