Skip to content

Commit

Permalink
Corrections to misleading comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
dkfellows committed Nov 22, 2016
1 parent 9071d8f commit 41ebade
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions generic/tcl.h
Original file line number Diff line number Diff line change
Expand Up @@ -831,19 +831,20 @@ typedef struct Tcl_Obj {
union { /* The internal representation: */
long longValue; /* - an long integer value. */
double doubleValue; /* - a double-precision floating value. */
void *otherValuePtr; /* - another, type-specific value,
not used internally any more. */
void *otherValuePtr; /* - another, type-specific value, not used
* internally any more. */
Tcl_WideInt wideValue; /* - a long long value. */
struct { /* - internal rep as two pointers.
* the main use of which is a bignum's
* Many uses in Tcl, including a bignum's
* tightly packed fields, where the alloc,
* used and signum flags are packed into
* ptr2 with everything else hung off ptr1. */
* ptr2 with everything else hung off
* ptr1. */
void *ptr1;
void *ptr2;
} twoPtrValue;
struct { /* - internal rep as a pointer and a long,
not used internally any more. */
* not used internally any more. */
void *ptr;
unsigned long value;
} ptrAndLongRep;
Expand Down

0 comments on commit 41ebade

Please sign in to comment.