summaryrefslogtreecommitdiffstats
path: root/generic/tkText.c
Commit message (Expand)AuthorAgeFilesLines
* Merge 8.6jan.nijtmans2019-06-251-1/+1
|\
| * CONST -> const. Eliminate unnecessary type-casts and end-of-line spacingjan.nijtmans2019-06-251-1/+1
* | Eliminate some redundant type-castsjan.nijtmans2019-06-211-1/+1
* | merge trunkjan.nijtmans2019-06-051-1/+1
|\ \
| * | Fix gcc-8 warningjan.nijtmans2019-05-131-1/+1
* | | Merge trunkjan.nijtmans2019-05-101-35/+35
|\ \ \ | |/ /
| * | Change size_t usages to (internal type) TkSizeT usages, which is "int" when c...jan.nijtmans2019-04-041-35/+35
* | | Merge trunkjan.nijtmans2019-04-021-51/+52
|\ \ \ | |/ /
| * | More use of Tcl_NewWideIntObj(), and more internal use of (size_t), for bigge...jan.nijtmans2019-04-021-50/+51
| * | Tcl_BackgroundError -> Tcl_BackgroundException. Mark deprecated macro's as su...jan.nijtmans2019-02-151-1/+1
* | | Merge 8.7jan.nijtmans2019-01-131-8/+7
|\ \ \ | |/ /
| * | Merge 8.6jan.nijtmans2019-01-101-2/+2
| |\ \ | | |/
| | *-. Merge 8.6 and all changes from original [bug-9e31fd9449] branchjan.nijtmans2019-01-081-3/+3
| | |\ \
| | | | * Fix [9e31fd944934e269121fa78ff56b7b86f33e6db6|9e31fd9449]: X11/X.h and Window...jan.nijtmans2019-01-081-2/+2
| | | | |\
| | | * | | Fix bug [b2dd3b4fe8] (text-11a.41 sometimes hangs) by reworking how thejan.nijtmans2019-01-031-6/+5
| | * | | | Make AsyncUpdateLineMetrics cancel any idle tasks for the afterSyncCmd before culler2019-01-021-5/+4
| | * | | | Use a flag bit instead of an int to store the sync state. Avoid running idleculler2019-01-021-2/+0
| | * | | | The sync command needs to ensure that no redraw is pending before updatingculler2019-01-011-0/+1
| | * | | | Make GenerateWidgetSyncEvent save the sync state whenever it sends an event,culler2018-12-311-0/+1
| | * | | | merge core-8-6-branch.culler2018-12-311-12/+12
| | |\ \ \ \
| | | * \ \ \ As requested by Christian Werner/François Vogel and others: Undo many None -...jan.nijtmans2018-12-311-12/+12
| | | |\ \ \ \ | | | | | |_|/ | | | | |/| |
| | | | * | | As requested by Christian Werner/François Vogel and others: Undo many None -...jan.nijtmans2018-12-311-19/+19
| | * | | | | Merge core-8-6-branch.culler2018-12-301-14/+14
| | |\ \ \ \ \ | | | |/ / / /
| | | * | | | Fix [9e31fd9449]: X11/X.h and Windows.h have conflicting symbols jan.nijtmans2018-12-201-14/+14
| | | |\ \ \ \ | | | | |/ / / | | | | | / / | | | | |/ / | | | |/| |
| | | | * | Fix [9e31fd944934e269121fa78ff56b7b86f33e6db6|9e31fd9449]: X11/X.h and Window...jan.nijtmans2018-12-201-19/+19
| | | | |/
| | * | | In TkTextUpdateLineMetrics, line numbers start at zero, not 1fvogel2018-11-191-1/+1
| | |/ /
| * | | Fix bug [b2dd3b4fe8] (text-11a.41 sometimes hangs) by reworking how thejan.nijtmans2019-01-031-6/+5
* | | | Merge trunkjan.nijtmans2018-12-081-1/+1
|\ \ \ \ | |/ / /
| * | | Eliminate USE_OLD_TAG_SEARCH: It isn't used and tested any more.jan.nijtmans2018-12-081-1/+1
* | | | Merge trunkjan.nijtmans2018-11-251-12/+16
|\ \ \ \ | |/ / /
| * | | Fix [4b555aca34]: text search -all hangs and eats all memoryfvogel2018-10-171-7/+11
| |\ \ \ | | |/ /
| | * | Fix backwards search, thanks to Koen Danckaertfvogel2018-10-161-6/+9
| | * | Simplify patch for forward search a litle bitfvogel2018-10-161-2/+2
| | * | Remove comment I forgot to revert previously.fvogel2018-10-151-3/+1
| | * | Third fix proposal for [4b555aca34]: text search -all hangs and eats all memo...fvogel2018-10-151-1/+2
| | * | Revert the second fix proposal, and add more tests (covering backwards search...fvogel2018-10-151-3/+0
| | * | Another proposed fix for [4b555aca34]: text search -all hangs and eats all me...fvogel2018-10-151-1/+6
| | * | Backout the previously proposed fix [80286abf05], and add more tests.fvogel2018-10-151-2/+2
| | * | Fix [4b555aca34]: text search -all hangs and eats all memoryfvogel2018-10-111-2/+2
| * | | Another round of (internal) int|long -> size_t replacements, at least when co...jan.nijtmans2018-10-161-1/+1
| * | | Change char *recordPtr to void *recordPtr in Tk_SetOptions() and friends. Thi...jan.nijtmans2018-10-161-4/+4
* | | | Experiment: let's see if we can deprecate Tk_Offset() in favor of offsetof()jan.nijtmans2018-10-061-42/+42
|/ / /
* | | more size_t related code cleanupjan.nijtmans2018-10-041-2/+2
* | | Header include reform: Since "tkInt.h" already contains header files like <st...jan.nijtmans2018-09-061-1/+1
* | | More preparation for TIP #494 compatibitly. Add 2 utility functions, which ca...jan.nijtmans2018-08-111-12/+6
* | | Merge 8.6jan.nijtmans2018-08-101-23/+24
|\ \ \ | |/ /
| * | Eliminate type-casts, by using size_t type internally in more situations. No ...jan.nijtmans2018-08-101-23/+24
* | | Fix [de01e24aa1]: Text replace command involving selection crashesfvogel2018-06-161-3/+9
|\ \ \ | |/ /
| * | Fix [de01e24aa1]: Text replace command involving selection crashesfvogel2018-06-131-3/+9
* | | Fix [b68710aed6]: Minor fixes to library/text.tcl bindings, and generation of...fvogel2018-01-281-32/+33
|\ \ \ | |/ /