Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Remove dead code / outdated comment |
|---|---|
| Timelines: | family | ancestors | descendants | both | trunk | main |
| Files: | files | file ages | folders |
| SHA3-256: |
68ea14892ffbc1363b13baf85dca703d |
| User & Date: | jan.nijtmans 2024-06-20 18:47:18.143 |
References
|
2024-08-29
| ||
| 20:07 | Merge [68ea14892ffbc136]: Remove dead code / outdated comment. check-in: 58586e428b user: pooryorick tags: unchained, INCOMPATIBLE_LICENSE | |
Context
|
2024-08-29
| ||
| 20:07 | Merge [68ea14892ffbc136]: Remove dead code / outdated comment. check-in: 58586e428b user: pooryorick tags: unchained, INCOMPATIBLE_LICENSE | |
|
2024-06-21
| ||
| 06:43 | Update string is integer docs as per TIP 514. check-in: bd5723c171 user: apnadkarni tags: trunk, main | |
|
2024-06-20
| ||
| 18:47 | Remove dead code / outdated comment check-in: 68ea14892f user: jan.nijtmans tags: trunk, main | |
|
2024-06-19
| ||
| 16:39 | Fix [7be97a6859]: Reviewing chan.n changes check-in: 9453353b55 user: jan.nijtmans tags: trunk, main | |
Changes
Changes to generic/tclIO.c.
| ︙ | ︙ | |||
339 340 341 342 343 344 345 |
FreeChannelInternalRep, /* freeIntRepProc */
DupChannelInternalRep, /* dupIntRepProc */
NULL, /* updateStringProc */
NULL, /* setFromAnyProc */
TCL_OBJTYPE_V0
};
| < < < | 339 340 341 342 343 344 345 346 347 348 349 350 351 352 |
FreeChannelInternalRep, /* freeIntRepProc */
DupChannelInternalRep, /* dupIntRepProc */
NULL, /* updateStringProc */
NULL, /* setFromAnyProc */
TCL_OBJTYPE_V0
};
#define ChanSetInternalRep(objPtr, resPtr) \
do { \
Tcl_ObjInternalRep ir; \
(resPtr)->refCount++; \
ir.twoPtrValue.ptr1 = (resPtr); \
ir.twoPtrValue.ptr2 = NULL; \
Tcl_StoreInternalRep((objPtr), &chanObjType, &ir); \
|
| ︙ | ︙ | |||
1662 1663 1664 1665 1666 1667 1668 |
}
statePtr->channelName = tmp;
statePtr->flags = mask;
statePtr->maxPerms = mask; /* Save max privileges for close callback */
/*
* Set the channel to system default encoding.
| < < < < < < | 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 |
}
statePtr->channelName = tmp;
statePtr->flags = mask;
statePtr->maxPerms = mask; /* Save max privileges for close callback */
/*
* Set the channel to system default encoding.
*/
name = Tcl_GetEncodingName(NULL);
statePtr->encoding = Tcl_GetEncoding(NULL, name);
statePtr->inputEncodingState = NULL;
statePtr->inputEncodingFlags = TCL_ENCODING_START;
statePtr->outputEncodingState = NULL;
|
| ︙ | ︙ |