Changeset 840 for windows/autohotkey/Source/Methods-Other.ahk
- Timestamp:
- 09/02/08 02:59:30 (5 years ago)
- Files:
-
- 1 modified
-
windows/autohotkey/Source/Methods-Other.ahk (modified) (11 diffs)
Legend:
- Unmodified
- Added
- Removed
-
windows/autohotkey/Source/Methods-Other.ahk
r838 r840 76 76 send {bs} 77 77 send % val 78 isFurtherCompKey = 0 78 79 return 1 79 80 } … … 87 88 send {bs} 88 89 send % val1 90 isFurtherCompKey = 0 89 91 return 1 90 92 } else if (Ebene = 2) and (val2 != "") { … … 92 94 send {bs} 93 95 send % val2 94 is SecondCompKey = 096 isFurtherCompKey = 0 95 97 return 1 96 98 } … … 101 103 if (PriorCompKey == d) { 102 104 PriorCompKey = 105 CompKey = 103 106 if !DeadCompose 104 107 send {bs} … … 114 117 if (Ebene = 1) and (val1 != "") { 115 118 PriorCompKey = 119 CompKey = 116 120 if !DeadCompose 117 121 send {bs} … … 121 125 } else if (Ebene = 2) and (val2 != "") { 122 126 PriorCompKey = 127 CompKey = 123 128 if !DeadCompose 124 129 send {bs} … … 134 139 if (PriorCompKey == d) { 135 140 PriorCompKey = 141 CompKey = 136 142 if !DeadCompose 137 143 send {bs}{bs} … … 147 153 if (Ebene = 1) and (val1 != "") { 148 154 PriorCompKey = 155 CompKey = 149 156 if !DeadCompose 150 157 send {bs}{bs} … … 154 161 } else if (Ebene = 2) and (val2 != "") { 155 162 PriorCompKey = 163 CompKey = 156 164 if !DeadCompose 157 165 send {bs}{bs} … … 184 192 if isFurtherCompkey { 185 193 PriorCompKey := CompKey := PriorCompKey . "_" . d 194 isFurtherCompkey = 0 186 195 CheckCompose() 187 CompKey =188 isFurtherCompkey := 0189 return 1196 if (CompKey = "") 197 return 1 198 else CompKey = 190 199 } 191 200 else … … 193 202 PriorCompKey := CompKey := PriorCompKey . "_" . d 194 203 CheckCompose() 195 isFurtherCompKey := 1 204 if CompKey 205 isFurtherCompKey = 1 196 206 return 1 197 207 }
