Changeset 2867


Ignore:
Timestamp:
Dec 31, 2017, 2:48:12 PM (7 years ago)
Author:
Andreas Schnellbacher
Message:
  • Fixed logic when Locate replaces parts of LastChangeArgs. The previous code never apllied, because it had reset and set it in one pass.
  • Added rc to Change if the replace part in its arg string is missing.
  • Checked that rc in defs that execute Change.
File:
1 edited

Legend:

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

    r2866 r2867  
    620620   -- Save last args
    621621   call SetLastSearchArgs( SearchArgs)
    622    if search_string <> cSearchString | fid <> LastFid then
    623       -- Reset LastChangeArgs if search has changed
    624       --dprintf( 'Reset LastChangeArgs')
    625       ChangeArgs = ''
    626       call SetLastChangeArgs( ChangeArgs)
    627    endif
    628622   if search_string = cSearchString then
    629623      -- Reset the SearchOptios in LastChangeArgs for the next Change while
     
    752746   if not p2 then
    753747      sayerror NO_REP__MSG  -- 'No replacement string specified' (Rather the missing delimiter is checked.)
    754       return
     748      -- A defc must use "return myrc" or use "rc = myrc" to set the
     749      -- global var rc. When "return" is used only, rc would be set to empty.
     750      -- Another option is to omit return for a defc. Then rc will be kept as well.
     751      -- A defproc may return its own rcx, without overriding the global rc.
     752      rc = -257  -- Invalid number of parameters
     753      return rc
    755754   endif
    756755   parse value args with (delim)search_string(delim)replace_string(delim)user_options
     
    12761275   'SearchDirection +'
    12771276   'RepeatChange'
    1278    'RepeatFind'
     1277   if not rc then
     1278      'RepeatFind'
     1279   endif
    12791280
    12801281; ---------------------------------------------------------------------------
     
    12821283   'SearchDirection -'
    12831284   'RepeatChange'
    1284    'RepeatFind'
     1285   if not rc then
     1286      'RepeatFind'
     1287   endif
    12851288
    12861289; ---------------------------------------------------------------------------
     
    14421445            call prestore_pos( savedpos)
    14431446         endif
     1447      elseif rc = -257 then  -- Invalid number of parameters
     1448         return rc
    14441449      else
    14451450         -- Not found
Note: See TracChangeset for help on using the changeset viewer.