Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Colour MISSING in default status filter. |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
2e30171ad3726391518109b6f11b971a |
User & Date: | marc 2013-01-17 05:08:03 |
Context
2013-01-17
| ||
05:20 | Update copyright year and include 'LICENSE' in 'fsl'. Leaf check-in: 06a31756cc user: marc tags: trunk | |
05:08 | Colour MISSING in default status filter. check-in: 2e30171ad3 user: marc tags: trunk | |
2013-01-08
| ||
14:06 | Simplify the prompt regexp (no need to escape '?' inside a disjunction). check-in: 4038632842 user: marc tags: trunk | |
Changes
Changes to fsl.
︙ | ︙ | |||
61 62 63 64 65 66 67 68 69 70 71 72 73 74 | # -- Filters: filter status {changes status timeline add rm addremove} { lassign [split [string trim $line]] status switch $status { MERGED_WITH { coloured purple $line } ADDED { coloured green $line } EDITED { coloured cyan $line } DELETED { coloured red $line } default { set line } } } | > | 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | # -- Filters: filter status {changes status timeline add rm addremove} { lassign [split [string trim $line]] status switch $status { MERGED_WITH { coloured purple $line } MISSING { coloured yellow $line } ADDED { coloured green $line } EDITED { coloured cyan $line } DELETED { coloured red $line } default { set line } } } |
︙ | ︙ |