Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Merge 8.6 |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | core-8-branch |
Files: | files | file ages | folders |
SHA3-256: |
2f164e9d41bc3cb9f4f6050f0fdd2e3f |
User & Date: | jan.nijtmans 2018-09-28 18:49:45.020 |
Context
2018-09-29
| ||
08:51 | More readability improvements to unix makefile check-in: 3a0455ee94 user: dkf tags: core-8-branch | |
2018-09-28
| ||
19:59 | \Merge 8.7 Closed-Leaf check-in: bcc54d1577 user: jan.nijtmans tags: tip-502 | |
19:58 | Merge 8.7 Closed-Leaf check-in: b4a19593fb user: jan.nijtmans tags: tip-514 | |
18:57 | Merge 8.7 check-in: d812be8851 user: jan.nijtmans tags: trunk | |
18:49 | Merge 8.6 check-in: 2f164e9d41 user: jan.nijtmans tags: core-8-branch | |
18:45 | Another patch contributed by Gustaf Neumann: shifting negative numbers is undefined behavior in the ... check-in: 165586b224 user: jan.nijtmans tags: core-8-6-branch | |
18:21 | nmake build fixes for zipfs (ongoing, zip attachments not done yet) check-in: eedd24aae1 user: jan.nijtmans tags: core-8-branch | |
Changes
Changes to generic/tclCompile.h.
︙ | ︙ | |||
1469 1470 1471 1472 1473 1474 1475 | # define TclGetInt1AtPtr(p) ((int) *((signed char *) p)) #else # define TclGetInt1AtPtr(p) \ (((int) *((char *) p)) | ((*(p) & 0200) ? (-256) : 0)) #endif #define TclGetInt4AtPtr(p) \ | | | 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 | # define TclGetInt1AtPtr(p) ((int) *((signed char *) p)) #else # define TclGetInt1AtPtr(p) \ (((int) *((char *) p)) | ((*(p) & 0200) ? (-256) : 0)) #endif #define TclGetInt4AtPtr(p) \ (((int) (TclGetUInt1AtPtr(p) << 24)) | \ (*((p)+1) << 16) | \ (*((p)+2) << 8) | \ (*((p)+3))) #define TclGetUInt1AtPtr(p) \ ((unsigned int) *(p)) #define TclGetUInt4AtPtr(p) \ |
︙ | ︙ |