Tk Source Code

Check-in [4719c5a4]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Fix [432d8daf8b]: revised_text widget limits number of tags to 32. Thanks to Paul Obermeier.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | revised_text | tip-466
Files: files | file ages | folders
SHA3-256: 4719c5a45cb9aa42127d9fd1325c3664b283ed6de437ed65c1565e72231689a3
User & Date: fvogel 2024-11-15 21:27:28
References
2024-11-15
21:32 Closed ticket [432d8daf]: revised_text widget limits number of tags to 32 plus 7 other changes artifact: 56c0c550 user: fvogel
Context
2024-11-15
23:37
Remove superfluous #include (already included in tkText.h). check-in: 6581ca91 user: fvogel tags: revised_text, tip-466
21:27
Fix [432d8daf8b]: revised_text widget limits number of tags to 32. Thanks to Paul Obermeier. check-in: 4719c5a4 user: fvogel tags: revised_text, tip-466
16:48
Merge 9.0 check-in: 2de204a8 user: jan.nijtmans tags: revised_text, tip-466
Changes
Unified Diff Ignore Whitespace Patch
Changes to generic/tkBitField.h.
9
10
11
12
13
14
15





16
17
18
19
20
21
22
 * this file, and for a DISCLAIMER OF ALL WARRANTIES.
 */

#ifndef _TKBITFIELD
#define _TKBITFIELD

#include "tkInt.h" /* needed for inline support and 64 bit support */






#define TK_BIT_NBITS (sizeof(size_t)*8) /* Number of bits in one word. */

struct TkIntSet;


/*







>
>
>
>
>







9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
 * this file, and for a DISCLAIMER OF ALL WARRANTIES.
 */

#ifndef _TKBITFIELD
#define _TKBITFIELD

#include "tkInt.h" /* needed for inline support and 64 bit support */

#if (UINTPTR_MAX >= 0xffffffffffffffffu)
 /* This is a real 64 bit architecture. */
#   define TK_IS_64_BIT_ARCH
#endif

#define TK_BIT_NBITS (sizeof(size_t)*8) /* Number of bits in one word. */

struct TkIntSet;


/*