Changeset 3181
- Timestamp:
- Oct 10, 2018, 7:19:07 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/netlabs/macros/keys.e ¶
r3176 r3181 1154 1154 1155 1155 -- Parse keyset definition list and get resolved list of KeysetCmds. 1156 -- Keyset command defs have ' Keys' appended. In the following, the1157 -- term 'keyset cmd' means the command without ' Keys'. The same applies1158 -- for the array vars, were the string without ' Keys' is used, too.1156 -- Keyset command defs have 'keys' appended. In the following, the 1157 -- term 'keyset cmd' means the command without 'keys'. The same applies 1158 -- for the array vars, were the string without 'keys' is used, too. 1159 1159 KeysetCmds = '' 1160 1160 do w = 1 to words( List) … … 1225 1225 -- Add keyset name to array var for this keyset cmd 1226 1226 AddAVar( 'keysetcmd.'ThisKeyset, Name) 1227 -- Execute keyset cmd (with ' Keys' appended)1228 ThisKeyset' Keys'1227 -- Execute keyset cmd (with 'keys' appended) 1228 ThisKeyset'keys' 1229 1229 enddo 1230 1230 … … 1246 1246 do once = 1 to 1 1247 1247 -- Check if Keyset cmd exists 1248 if isadefc( ThisKeyset' Keys') then1248 if isadefc( ThisKeyset'keys') then 1249 1249 fIsDefined = 1 1250 1250 leave … … 1252 1252 1253 1253 -- Check if .EX file exists 1254 findfile ExFile, ThisKeyset' Keys.ex', 'EPMPATH'1254 findfile ExFile, ThisKeyset'keys.ex', 'EPMPATH' 1255 1255 if rc then 1256 1256 leave … … 1258 1258 1259 1259 -- Check if .EX file is linked 1260 linkedrc = linked( ThisKeyset' Keys.ex')1260 linkedrc = linked( ThisKeyset'keys.ex') 1261 1261 if linkedrc >= 0 then 1262 1262 leave … … 1264 1264 1265 1265 -- Link .EX file 1266 'Link quiet' ThisKeyset' Keys'1266 'Link quiet' ThisKeyset'keys' 1267 1267 --dprintf( 'KeysetCmdExists: Keyset "'ThisKeyset'Keys" linked, rc = 'rc) 1268 1268 … … 1273 1273 1274 1274 -- Check if Keyset cmd exists 1275 if isadefc( ThisKeyset' Keys') then1275 if isadefc( ThisKeyset'keys') then 1276 1276 fIsDefined = 1 1277 1277 leave … … 1458 1458 ThisKeyset = word( KeysetCmds, k) 1459 1459 1460 -- Execute keyset cmd (with ' Keys' appended). This calls a set of DefKey1460 -- Execute keyset cmd (with 'keys' appended). This calls a set of DefKey 1461 1461 -- procs. 1462 ThisKeyset' Keys'1462 ThisKeyset'keys' 1463 1463 enddo 1464 1464 --dprintf( 'SetKeyset2: Switch keyset, keyset cmds executed: 'Name' = 'KeysetCmds)
Note:
See TracChangeset
for help on using the changeset viewer.