Keyboard macros: Difference between revisions

Content added Content deleted
(→‎{{header|REXX}}: added/changed whitespace and comments, corrected some typos, changed indentations.)
m (→‎{{header|REXX}}: corrected some typos.)
Line 562: Line 562:
@TYPE = 'TYPE' /*point to the TYPE cmd*/
@TYPE = 'TYPE' /*point to the TYPE cmd*/
defFid = #path'LOGS\'!fn".LOG"
defFid = #path'LOGS\'!fn".LOG"
olfFid = #path'LOGS\'!fn".OLD"
oldFid = #path'LOGS\'!fn".OLD"
tops = '.BOX= .C=blue .H=darkcyan .E=1'
tops = '.BOX= .C=blue .H=darkcyan .E=1'
fops = '.EF='defFid
fops = '.EF='defFid
Line 620: Line 620:


if lFID==defFid then do
if lFID==defFid then do
call dosdel olfFid
call dosdel oldFid
call dosrename defFid,olfFid
call dosrename defFid,oldFid
end
end
else call dosdel lFID
else call dosdel lFID