Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Cleanup |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
3b6cf630b3f691ea4a91f7b456ee6587 |
User & Date: | peter 2020-09-28 16:55:19.517 |
Context
2020-09-28
| ||
16:57 | Added feature to prune lone files in dir diff. check-in: c9691753c1 user: peter tags: trunk | |
16:55 | Cleanup check-in: 3b6cf630b3 user: peter tags: trunk | |
2020-09-02
| ||
12:33 | Fixed bug where copy context menu used the wrong key. check-in: e7d99aa232 user: peter tags: trunk | |
Changes
Changes to eskil.vfs/lib/psballoon/psballoon.tcl.
︙ | ︙ | |||
87 88 89 90 91 92 93 | bind $W <Button> { psballoon::killBalloon } bind $W <Leave> { psballoon::killBalloon } bind $W <Motion> { | > > > > > | | | | | | | | | | | | | | | | | < | 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 | bind $W <Button> { psballoon::killBalloon } bind $W <Leave> { psballoon::killBalloon } bind $W <Motion> { psballoon::motionBalloon %W %X %Y %x %y } } proc psballoon::motionBalloon {W X Y x y} { if {$::psballoon::balloon(pending) == 1} { after cancel $::psballoon::balloon(id) } if {$::psballoon::balloon(created) == 1} { if {$::psballoon::balloon(lastX) == $X && \ $::psballoon::balloon(lastY) == $Y} { # Sometimes when the balloon is created, a motion event with # the same coordinates arrive. Ignore that to avoid killing the # new balloon. return } psballoon::killBalloon } set ::psballoon::balloon(lastX) $X set ::psballoon::balloon(lastY) $Y set ::psballoon::balloon(id) [after 500 "psballoon::createBalloon $W $x $y"] set ::psballoon::balloon(pending) 1 } proc psballoon::killBalloon {} { variable balloon if {$balloon(pending) == 1} { after cancel $balloon(id) } |
︙ | ︙ |
Changes to src/eskil.syntax.
︙ | ︙ | |||
93 94 95 96 97 98 99 | ##nagelfar subcmd+ _obj,eskilprint text newLine ##nagelfar implicitvarns snit::type::eskilprint self\ _obj,eskilprint width height pdf hoy fontsize linesize nlines ox1 ox2 oy page options ########################################################## # This is the annotation needed for this object definition | | | 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 | ##nagelfar subcmd+ _obj,eskilprint text newLine ##nagelfar implicitvarns snit::type::eskilprint self\ _obj,eskilprint width height pdf hoy fontsize linesize nlines ox1 ox2 oy page options ########################################################## # This is the annotation needed for this object definition ##nagelfar syntax DirDiff dc=_obj,DirDiff p* ###nagelfar option DirDiff ##nagelfar return DirDiff _obj,DirDiff ##nagelfar subcmd+ _obj,DirDiff text newLine ##nagelfar implicitvarns snit::widget::DirDiff self\ _obj,DirDiff statusVar hull win self tree nice ########################################################## |
︙ | ︙ |
Changes to src/startup.tcl.
︙ | ︙ | |||
946 947 948 949 950 951 952 | } } } if {[optIsGiven -preprocessleft arg]} { # FIXA: better validity check foreach apa $arg { foreach {RE sub} $apa { | | | | 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 | } } } if {[optIsGiven -preprocessleft arg]} { # FIXA: better validity check foreach apa $arg { foreach {RE sub} $apa { addPreprocess cmdline $RE $sub "left" } } } if {[optIsGiven -preprocessright arg]} { # FIXA: better validity check foreach apa $arg { foreach {RE sub} $apa { addPreprocess cmdline $RE $sub "right" } } } # Handle list of revisions if {[optIsGiven -r arg]} { set revNo 1 foreach rev $arg { |
︙ | ︙ |