Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | TkTextIndexCmp became TkTextIndexCompare |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | revised_text | tip-466 |
Files: | files | file ages | folders |
SHA3-256: |
454acea36545570e5811042f4f8bad18 |
User & Date: | fvogel 2019-05-10 15:40:41.753 |
Context
2019-05-14
| ||
19:44 | merge trunk check-in: e7c53950 user: fvogel tags: revised_text, tip-466 | |
2019-05-10
| ||
15:43 | Fix [4f309446ea]: revised_text: wrong answer for 'index displaylines', and failed assertion Closed-Leaf check-in: 7d60f427 user: fvogel tags: bug-4f309446ea | |
15:40 | TkTextIndexCmp became TkTextIndexCompare check-in: 454acea3 user: fvogel tags: revised_text, tip-466 | |
2019-05-09
| ||
22:14 | Merge trunk check-in: bf13f862 user: jan.nijtmans tags: revised_text, tip-466 | |
Changes
Changes to tests/textIndex.test.
︙ | ︙ | |||
359 360 361 362 363 364 365 | test textIndex-8.5 {TkTextGetIndex, modifiers} { list [catch {.t index {2.1+foo bar}} msg] $msg } {1 {bad text index "2.1+foo bar"}} test textIndex-8.6 {TkTextGetIndex, modifiers} { list [catch {.t index {2.1 foo bar}} msg] $msg } {1 {bad text index "2.1 foo bar"}} | | | | | | | 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 | test textIndex-8.5 {TkTextGetIndex, modifiers} { list [catch {.t index {2.1+foo bar}} msg] $msg } {1 {bad text index "2.1+foo bar"}} test textIndex-8.6 {TkTextGetIndex, modifiers} { list [catch {.t index {2.1 foo bar}} msg] $msg } {1 {bad text index "2.1 foo bar"}} test textIndex-9.1 {TkTextIndexCompare} { list [.t compare 3.1 < 3.2] [.t compare 3.1 == 3.2] } {1 0} test textIndex-9.2 {TkTextIndexCompare} { list [.t compare 3.2 < 3.2] [.t compare 3.2 == 3.2] } {0 1} test textIndex-9.3 {TkTextIndexCompare} { list [.t compare 3.3 < 3.2] [.t compare 3.3 == 3.2] } {0 0} test textIndex-9.4 {TkTextIndexCompare} { list [.t compare 2.1 < 3.2] [.t compare 2.1 == 3.2] } {1 0} test textIndex-9.5 {TkTextIndexCompare} { list [.t compare 4.1 < 3.2] [.t compare 4.1 == 3.2] } {0 0} test textIndex-10.1 {ForwBack} { list [catch {.t index {2.3 + x}} msg] $msg } {1 {bad text index "2.3 + x"}} test textIndex-10.2 {ForwBack} { |
︙ | ︙ |