Changeset 4066


Ignore:
Timestamp:
Jun 16, 2020, 12:26:05 PM (5 years ago)
Author:
Andreas Schnellbacher
Message:
  • Edit: Stop interpreter on multiple errors. That should avoid multiple MessageNWait calls.
  • Edit: Improved file loading for Edit /n.
  • Cleanup of saved und used file ids.
Location:
trunk/src/netlabs/macros
Files:
3 edited

Legend:

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

    r4065 r4066  
    660660                             -- Both values are set by defmain, if only
    661661                             -- the unknown file was loaded (via xcom edit).
    662    universal lastselectedfid
    663 
    664662   edit_rc = ''
    665    -- Reset lastselectedfid to avoid suppression of next ProcessSelect
    666    lastselectedfid = ''
    667663
    668664   do once = 1 to 1
     
    709705
    710706      NumErrors = 0
    711       FirstFid  = ''
     707      firstfid  = ''
    712708
    713709      fParseCmd = 1
     
    919915               NumErrors = NumErrors + 1
    920916            else
    921                if FirstFid = '' then
    922                   -- If rc = 0, then set FirstFid:
    923                   getfileid FirstFid
     917               if firstfid = '' then
     918                  -- If rc = 0, then set firstfid:
     919                  getfileid firstfid
    924920               endif
    925921            endif
     
    932928      if FileSpec = '' & Cmd = '' & pos( '/n', lowcase( Options)) then
    933929         call LoadFile( FileSpec, Options)
     930         edit_rc = rc
     931         if not edit_rc then
     932            getfileid firstfid
     933         endif
    934934      endif
    935935
    936936      if NumErrors > 1 then
    937937         MessageNWait( MULTIPLE_ERRORS__MSG)
    938       endif
    939 
    940       dprintf( 'EDIT', 'arg( 1) = ['arg( 1)'], FirstFid = ['FirstFid'], ['FirstFid.filename']')
     938         stop
     939      endif
     940
     941      dprintf( 'EDIT', 'arg( 1) = ['arg( 1)'], firstfid = ['firstfid'], ['firstfid.filename']')
    941942      -- If 1 or more files are loaded by the current Edit cmd
    942943      -- (or if loadfile has returned rc = 0)
    943       if FirstFid <> '' then
     944      if firstfid <> '' then
    944945         -- Set fid for ProcessFilesLoaded
    945          firstloadedfid = FirstFid
     946         firstloadedfid = firstfid
    946947
    947948         -- Initialize firstinringfid if not already set by a previous Edit command
     
    12061207      .autosave = 0
    12071208      .visible = 0
    1208       firstloadedfid = ''
     1209      firstnewfid = ''
    12091210
    12101211      -- Execute the lines
     
    12291230
    12301231         'Edit /np 'LineStr
    1231          if firstloadedfid = '' then
     1232         if firstnewfid = '' then
    12321233            getfileid fid
    12331234            if fid <> listfid then
    1234                firstloadedfid = fid
     1235               firstnewfid = fid
    12351236            endif
    12361237         endif
     
    12401241      -- This makes other commands in the FileList need only one PostMe
    12411242      -- to be applied on this file.
    1242       if firstloadedfid <> '' then
    1243          if validatefileid( firstloadedfid) then
    1244             activatefile firstloadedfid
     1243      if firstnewfid <> '' then
     1244         if validatefileid( firstnewfid) then
     1245            activatefile firstnewfid
    12451246         endif
    12461247      endif
     
    12481249      -- Note: File loading takes some time. Therefore many commands
    12491250      -- won't give reliable results at this time. PostMe helps.
    1250       'PostMe CloseHiddenFile' listfid firstloadedfid  -- PostMe required
     1251      'PostMe CloseHiddenFile' listfid firstnewfid  -- PostMe required
    12511252   enddo
    12521253
  • TabularUnified trunk/src/netlabs/macros/infoline.e

    r3880 r4066  
    519519   universal lastselectedfid
    520520   universal infolinerefresh  -- Disable refresh of infolines if = 0
    521 ;   universal modifydisabled   -- Disable processing of defmodify code, if
    522                                -- checked
     521
    523522   do once = 1 to 1
    524       --if modifydisabled = 1 then
    525       --   leave
    526       --endif
    527523      getfileid fid
    528       -- Don't process the following on file switching (cases 4) and 5))
     524      -- Don't process the following on file switching
    529525      if fid <> lastselectedfid then
    530526         leave
    531       endif
    532       if lastselectedfid = '' then
    533          leave
    534       endif
    535 
    536       -- Init universal var if this is the first selected file
    537       if lastselectedfid = '' then
    538          lastselectedfid = fid
    539527      endif
    540528
     
    556544         'SetStatusLine'  -- update color of statusline
    557545      endif
    558 
    559       -- Commented out, because: The following would disable resetting the modify
    560       -- state for tmp files, like .NEPMD_INFO. .modify is reset, but both the
    561       -- title bar and the status bar color show the modified state.
    562       -- ModifyDisabled = 1    -- Disable defmodify immediately
    563       --'postme EnableModify'  -- Reenable defmodify delayed
    564546   enddo
    565 
    566547
    567548; ---------------------------------------------------------------------------
  • TabularUnified trunk/src/netlabs/macros/select.e

    r4065 r4066  
    6666   endif
    6767
    68    -- Suppress too early select events
     68   -- Suppress too early select event for the automaticallay loaded file
    6969   if loadstate = '' then
    7070      dprintf( 'SELECT', 'suppress ProcessSelect for '.filename', fid = 'fid', loadstate = 'loadstate' (initial file)')
     
    7575
    7676   if fid = lastselectedfid then
    77       -- nop, ProcessSelect2 was already executed for this file
     77      -- nop, ProcessSelect was already executed for this file
    7878      dprintf( 'SELECT', 'suppress ProcessSelect for '.filename', fid = 'fid', loadstate = 'loadstate' (already processed)')
    7979   else
Note: See TracChangeset for help on using the changeset viewer.