Changeset 2880


Ignore:
Timestamp:
Jan 14, 2018, 10:52:43 PM (7 years ago)
Author:
Andreas Schnellbacher
Message:
  • Removed .ex file searching from defc UnLink, because it's not required.
File:
1 edited

Legend:

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

    r2652 r2880  
    3535;    >=0  linked successfully, the linked module number is returned, starting
    3636;         with 0 for EPM.EX, followed by 1 etc.
    37 defc link
     37defc Link
    3838   universal menuloaded  -- only defined in newmenu yet
    3939
     
    6868; user has to press 'OK' in order to continue. Other messages are always
    6969; suppressed. Additionally, the modulename must be given.
    70 defc linkverify
     70defc LinkVerify
    7171   modulename = arg(1)
    7272
     
    155155; Syntax: unlink [<path>][<modulename>][.ex]        Example:  unlink draw
    156156; A front end to the unlink statement to allow command-line invocation.
    157 ; The standard unlink statement doesn't search in EPMPATH and DPATH like the
    158 ; link statement does. This is added here. ExFile is searched in
    159 ; .;%EPMPATH%;%DPATH% until the linked file is found.
    160 defc unlink
    161    FullPathName = ''
     157defc UnLink
    162158   ExFile = arg(1)
    163159
    164    call parse_filename( ExFile)
    165 
    166    if substr( ExFile, 2, 2) =  ':\' or substr( ExFile, 1, 2) =  '\\' then
    167       FullPathName = ExFile
    168    endif
    169 
    170    if FullPathName = '' then
    171 
    172       -- If no name given, use current file with '.ex' extension
    173       if ExFile = '' then
    174          p2 = lastpos( '.', .filename)
    175          if upcase( substr( .filename, p2)) <> '.E' then
    176             sayerror '"'.filename'" is not an .E file'
    177             return
    178          endif
    179          ExFile = substr( .filename, 1, p2 - 1)'.ex'
    180       endif
    181 
    182       -- Strip path and append '.ex' if no extension
    183       p1 = lastpos( '\', ExFile)
    184       ExFileName = substr( ExFile, p1 + 1)
    185       p2 = lastpos( '.', ExFileName)
    186       if p2 = 0 then
    187          ExFileName = ExFileName'.ex'
    188       endif
    189 
    190       -- Search ExFile in whole PathList, until linkedrc >= 0
    191       PathList = '.;'Get_Env('EPMPATH')';'Get_Env('DPATH')';'  -- standard EPM
    192       --PathList = Get_Env('EPMEXPATH')';'                       -- NEPMD
    193       rest = PathList
    194       do while rest <> ''
    195          parse value rest with Path';'rest
    196          if Path = '' then
    197             iterate
    198          endif
    199          next = strip( Path, 'T', '\')'\'ExFileName
    200          if Exist( next) then
    201             linkedrc = linked( next)
    202             if linkedrc >= 0 then
    203                FullPathName = next
    204                leave
    205             endif
    206          endif
    207       enddo
    208 
    209    endif
    210 
    211    if FullPathName = '' then
    212       FullPathName = arg(1)  -- try to unlink arg(1) if not found until here
    213    endif
    214 
    215160   display -2  -- Turn non-critical messages off, we give our own message.
    216    unlink FullPathName
     161   unlink ExFile
    217162   unlinkrc = rc
    218163   display 2
     164
    219165   if unlinkrc then
    220166      if unlinkrc = -310 then
    221          sayerror 'Module "'FullPathName'" not unlinked, unknown module.'
     167         sayerror 'Module "'ExFile'" not unlinked, unknown module.'
    222168      elseif unlinkrc = -301 then
    223          sayerror 'Module "'FullPathName'" not unlinked, module in use (better restart EPM).'
     169         sayerror 'Module "'ExFile'" not unlinked, module in use (better restart EPM).'
    224170      elseif unlinkrc = -302 then
    225          sayerror 'Module "'FullPathName'" not unlinked, defined keyset in use (better restart EPM).'
    226       else
    227          sayerror 'Module "'FullPathName'" not unlinked, rc = 'unlinkrc'.'
    228       endif
    229    else
    230       sayerror 'Module "'FullPathName'" successfully unlinked.'
     171         sayerror 'Module "'ExFile'" not unlinked, defined keyset in use (better restart EPM).'
     172      else
     173         sayerror 'Module "'ExFile'" not unlinked, rc = 'unlinkrc'.'
     174      endif
     175   else
     176      sayerror 'Module "'ExFile'" successfully unlinked.'
    231177   endif
    232178
     
    244190;    -308                 if bad module name, can't be expanded.  Same as
    245191;                         sayerror("Link: invalid filename").
    246 defc qlink, qlinked, ql
     192defc QLink, QLinked, QL
    247193   module = arg(1)
    248194   call parse_filename( module)
     
    286232
    287233; ---------------------------------------------------------------------------
    288 defc linkexec
     234defc LinkExec
    289235   parse arg ex_file cmd_name
    290236   call link_exec( ex_file, cmd_name)
Note: See TracChangeset for help on using the changeset viewer.