Changeset 2880
- Timestamp:
- Jan 14, 2018, 10:52:43 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/netlabs/macros/linkcmds.e ¶
r2652 r2880 35 35 ; >=0 linked successfully, the linked module number is returned, starting 36 36 ; with 0 for EPM.EX, followed by 1 etc. 37 defc link37 defc Link 38 38 universal menuloaded -- only defined in newmenu yet 39 39 … … 68 68 ; user has to press 'OK' in order to continue. Other messages are always 69 69 ; suppressed. Additionally, the modulename must be given. 70 defc linkverify70 defc LinkVerify 71 71 modulename = arg(1) 72 72 … … 155 155 ; Syntax: unlink [<path>][<modulename>][.ex] Example: unlink draw 156 156 ; 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 = '' 157 defc UnLink 162 158 ExFile = arg(1) 163 159 164 call parse_filename( ExFile)165 166 if substr( ExFile, 2, 2) = ':\' or substr( ExFile, 1, 2) = '\\' then167 FullPathName = ExFile168 endif169 170 if FullPathName = '' then171 172 -- If no name given, use current file with '.ex' extension173 if ExFile = '' then174 p2 = lastpos( '.', .filename)175 if upcase( substr( .filename, p2)) <> '.E' then176 sayerror '"'.filename'" is not an .E file'177 return178 endif179 ExFile = substr( .filename, 1, p2 - 1)'.ex'180 endif181 182 -- Strip path and append '.ex' if no extension183 p1 = lastpos( '\', ExFile)184 ExFileName = substr( ExFile, p1 + 1)185 p2 = lastpos( '.', ExFileName)186 if p2 = 0 then187 ExFileName = ExFileName'.ex'188 endif189 190 -- Search ExFile in whole PathList, until linkedrc >= 0191 PathList = '.;'Get_Env('EPMPATH')';'Get_Env('DPATH')';' -- standard EPM192 --PathList = Get_Env('EPMEXPATH')';' -- NEPMD193 rest = PathList194 do while rest <> ''195 parse value rest with Path';'rest196 if Path = '' then197 iterate198 endif199 next = strip( Path, 'T', '\')'\'ExFileName200 if Exist( next) then201 linkedrc = linked( next)202 if linkedrc >= 0 then203 FullPathName = next204 leave205 endif206 endif207 enddo208 209 endif210 211 if FullPathName = '' then212 FullPathName = arg(1) -- try to unlink arg(1) if not found until here213 endif214 215 160 display -2 -- Turn non-critical messages off, we give our own message. 216 unlink FullPathName161 unlink ExFile 217 162 unlinkrc = rc 218 163 display 2 164 219 165 if unlinkrc then 220 166 if unlinkrc = -310 then 221 sayerror 'Module "' FullPathName'" not unlinked, unknown module.'167 sayerror 'Module "'ExFile'" not unlinked, unknown module.' 222 168 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).' 224 170 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.' 231 177 endif 232 178 … … 244 190 ; -308 if bad module name, can't be expanded. Same as 245 191 ; sayerror("Link: invalid filename"). 246 defc qlink, qlinked, ql192 defc QLink, QLinked, QL 247 193 module = arg(1) 248 194 call parse_filename( module) … … 286 232 287 233 ; --------------------------------------------------------------------------- 288 defc linkexec234 defc LinkExec 289 235 parse arg ex_file cmd_name 290 236 call link_exec( ex_file, cmd_name)
Note:
See TracChangeset
for help on using the changeset viewer.