summaryrefslogtreecommitdiffstats
path: root/generic/tclExecute.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2017-12-01 13:53:51 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2017-12-01 13:53:51 (GMT)
commit200910b9c19ac1986d28677de7b427ee774d8e40 (patch)
treee61a959db97a24d3f524d29aa17e9139a7bc84dc /generic/tclExecute.c
parente802927981b7af35c948a4c887be2a5399151d95 (diff)
parentf0d821a83cc98067d756402bebd4d941aa7e6cff (diff)
downloadtcl-200910b9c19ac1986d28677de7b427ee774d8e40.zip
tcl-200910b9c19ac1986d28677de7b427ee774d8e40.tar.gz
tcl-200910b9c19ac1986d28677de7b427ee774d8e40.tar.bz2
merge core-8-branch. Various cleanup: unused structure names, unused #defines. Change some "epoch"-related fields from int to size_t. Nothing functional.
Diffstat (limited to 'generic/tclExecute.c')
-rw-r--r--generic/tclExecute.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c
index bffe8d2..935e864 100644
--- a/generic/tclExecute.c
+++ b/generic/tclExecute.c
@@ -166,7 +166,7 @@ static BuiltinFunc const tclBuiltinFuncTable[] = {
* Minimal data required to fully reconstruct the execution state.
*/
-typedef struct TEBCdata {
+typedef struct {
ByteCode *codePtr; /* Constant until the BC returns */
/* -----------------------------------------*/
ptrdiff_t *catchTop; /* These fields are used on return TO this */