Changeset 3181


Ignore:
Timestamp:
Oct 10, 2018, 7:19:07 PM (6 years ago)
Author:
Andreas Schnellbacher
Message:
  • Changed automatically appended name part 'Keys' to lowercase for better listing of e.g. cuakeys.ex in .NEPMD_INFO.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/netlabs/macros/keys.e

    r3176 r3181  
    11541154
    11551155   -- Parse keyset definition list and get resolved list of KeysetCmds.
    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.
     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.
    11591159   KeysetCmds = ''
    11601160   do w = 1 to words( List)
     
    12251225         -- Add keyset name to array var for this keyset cmd
    12261226         AddAVar( 'keysetcmd.'ThisKeyset, Name)
    1227          -- Execute keyset cmd (with 'Keys' appended)
    1228          ThisKeyset'Keys'
     1227         -- Execute keyset cmd (with 'keys' appended)
     1228         ThisKeyset'keys'
    12291229      enddo
    12301230
     
    12461246   do once = 1 to 1
    12471247      -- Check if Keyset cmd exists
    1248       if isadefc( ThisKeyset'Keys') then
     1248      if isadefc( ThisKeyset'keys') then
    12491249         fIsDefined = 1
    12501250         leave
     
    12521252
    12531253      -- Check if .EX file exists
    1254       findfile ExFile, ThisKeyset'Keys.ex', 'EPMPATH'
     1254      findfile ExFile, ThisKeyset'keys.ex', 'EPMPATH'
    12551255      if rc then
    12561256         leave
     
    12581258
    12591259      -- Check if .EX file is linked
    1260       linkedrc = linked( ThisKeyset'Keys.ex')
     1260      linkedrc = linked( ThisKeyset'keys.ex')
    12611261      if linkedrc >= 0  then
    12621262         leave
     
    12641264
    12651265      -- Link .EX file
    1266       'Link quiet' ThisKeyset'Keys'
     1266      'Link quiet' ThisKeyset'keys'
    12671267      --dprintf( 'KeysetCmdExists: Keyset "'ThisKeyset'Keys" linked, rc = 'rc)
    12681268
     
    12731273
    12741274      -- Check if Keyset cmd exists
    1275       if isadefc( ThisKeyset'Keys') then
     1275      if isadefc( ThisKeyset'keys') then
    12761276         fIsDefined = 1
    12771277         leave
     
    14581458      ThisKeyset = word( KeysetCmds, k)
    14591459
    1460       -- Execute keyset cmd (with 'Keys' appended). This calls a set of DefKey
     1460      -- Execute keyset cmd (with 'keys' appended). This calls a set of DefKey
    14611461      -- procs.
    1462       ThisKeyset'Keys'
     1462      ThisKeyset'keys'
    14631463   enddo
    14641464   --dprintf( 'SetKeyset2: Switch keyset, keyset cmds executed: 'Name' = 'KeysetCmds)
Note: See TracChangeset for help on using the changeset viewer.