Changeset 2867
- Timestamp:
- Dec 31, 2017, 2:48:12 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/netlabs/macros/locate.e ¶
r2866 r2867 620 620 -- Save last args 621 621 call SetLastSearchArgs( SearchArgs) 622 if search_string <> cSearchString | fid <> LastFid then623 -- Reset LastChangeArgs if search has changed624 --dprintf( 'Reset LastChangeArgs')625 ChangeArgs = ''626 call SetLastChangeArgs( ChangeArgs)627 endif628 622 if search_string = cSearchString then 629 623 -- Reset the SearchOptios in LastChangeArgs for the next Change while … … 752 746 if not p2 then 753 747 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 755 754 endif 756 755 parse value args with (delim)search_string(delim)replace_string(delim)user_options … … 1276 1275 'SearchDirection +' 1277 1276 'RepeatChange' 1278 'RepeatFind' 1277 if not rc then 1278 'RepeatFind' 1279 endif 1279 1280 1280 1281 ; --------------------------------------------------------------------------- … … 1282 1283 'SearchDirection -' 1283 1284 'RepeatChange' 1284 'RepeatFind' 1285 if not rc then 1286 'RepeatFind' 1287 endif 1285 1288 1286 1289 ; --------------------------------------------------------------------------- … … 1442 1445 call prestore_pos( savedpos) 1443 1446 endif 1447 elseif rc = -257 then -- Invalid number of parameters 1448 return rc 1444 1449 else 1445 1450 -- Not found
Note:
See TracChangeset
for help on using the changeset viewer.