diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-01-26 17:08:06 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-01-26 17:08:06 (GMT) |
commit | a6393381ec5d16f9f82c4b8ee992bedaa7c1e4a9 (patch) | |
tree | fe6b18722418a1781841f55205a83cc15c243c6b /generic/tcl.h | |
parent | d53b2ae83f6ba7aa37755dda0d38ff034c0c0ebd (diff) | |
parent | fa64afb29a232d853b04e8e7bb5ad53c3d02f019 (diff) | |
download | tcl-a6393381ec5d16f9f82c4b8ee992bedaa7c1e4a9.zip tcl-a6393381ec5d16f9f82c4b8ee992bedaa7c1e4a9.tar.gz tcl-a6393381ec5d16f9f82c4b8ee992bedaa7c1e4a9.tar.bz2 |
Merge 8.6. Also reduce tclCharTypeTable[] to 256 entries, as this table is always addressed with unsigned chars now.
Eliminate some useless end-of-line spacing that slipped in.
Diffstat (limited to 'generic/tcl.h')
-rw-r--r-- | generic/tcl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index 1c55f7e..c287a84 100644 --- a/generic/tcl.h +++ b/generic/tcl.h @@ -760,7 +760,7 @@ typedef union Tcl_ObjIntRep { /* The internal representation: */ /* not used internally any more. */ Tcl_WideInt wideValue; /* - an integer value >= 64bits */ struct { /* - internal rep as two pointers. */ - void *ptr1; + void *ptr1; void *ptr2; } twoPtrValue; struct { /* - internal rep as a pointer and a long, */ |