Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fixed typo. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
0c110e46a5980c79f8a1cf66df322d83 |
| User & Date: | sgolovan 2016-06-30 04:16:30.670 |
Context
|
2016-07-09
| ||
| 08:51 | Show the last 16 hexadecimal digits as keyid for GPG keys instead of 8 because of existing examples of keys with the same short keyids. check-in: 2102ce602b user: sgolovan tags: trunk | |
|
2016-06-30
| ||
| 04:16 | Fixed typo. check-in: 0c110e46a5 user: sgolovan tags: trunk | |
|
2016-04-25
| ||
| 06:01 | Removed system tray plugins which use obsolete extensions (closes ticket [e02761a005]). check-in: a491c1b77d user: sgolovan tags: trunk | |
Changes
Changes to ChangeLog.
1 2 3 4 5 6 7 | 2016-04-25 Sergei Golovan <sgolovan@nes.ru> * plugins/unix/dockingtray.tcl, plugins/unix/systray.tcl: Removed system tray plugins which use obsolete extensions (closes ticket [e02761a005]). 2016-03-17 Sergei Golovan <sgolovan@nes.ru> | > > > > | 1 2 3 4 5 6 7 8 9 10 11 | 2016-06-30 Sergei Golovan <sgolovan@nes.ru> * richtext.tcl: Fixed typo. 2016-04-25 Sergei Golovan <sgolovan@nes.ru> * plugins/unix/dockingtray.tcl, plugins/unix/systray.tcl: Removed system tray plugins which use obsolete extensions (closes ticket [e02761a005]). 2016-03-17 Sergei Golovan <sgolovan@nes.ru> |
| ︙ | ︙ |
Changes to richtext.tcl.
| ︙ | ︙ | |||
375 376 377 378 379 380 381 |
# Message properties are automatically killed when message rendering
# process is over.
# Assotiates "message property" $name and assigns value $val to it:
proc richtext::property_add {name value} {
variable msgprops
| | | 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 |
# Message properties are automatically killed when message rendering
# process is over.
# Assotiates "message property" $name and assigns value $val to it:
proc richtext::property_add {name value} {
variable msgprops
if {[info exists msgprops($name)]} {
return -code error "[namespace current]::property_add:\
Attempted to overwrite message property: $name"
}
set msgprops($name) $value
}
|
| ︙ | ︙ |