Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Remove superfluous #include (already included in tkText.h). |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | revised_text | tip-466 |
Files: | files | file ages | folders |
SHA3-256: |
6581ca91a3773bfef6efd358b3ff11ca |
User & Date: | fvogel 2024-11-15 23:37:14 |
Context
2024-11-17
| ||
18:25 | Fix [d5a3b86f3a]: tablelist widget with header items and title columns crashes when run with revised_text. check-in: 947fbbd8 user: fvogel tags: revised_text, tip-466 | |
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 | |
Changes
Changes to generic/tkTextBTree.c.
︙ | ︙ | |||
11 12 13 14 15 16 17 | * * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. */ #include "tkInt.h" #include "tkText.h" | < | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | * * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. */ #include "tkInt.h" #include "tkText.h" #include "tkTextTagSet.h" #include <assert.h> #ifndef MIN # define MIN(a,b) (((int) a) < ((int) b) ? a : b) #endif #ifndef MAX |
︙ | ︙ |