Changeset 4454
- Timestamp:
- Apr 2, 2021, 10:26:48 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/netlabs/macros/config.e ¶
r4448 r4454 1393 1393 ; --------------------------------------------------------------------------- 1394 1394 defproc DeleteConfigTree( KeyPath) 1395 -- Strip trailing '\' 1395 -- A trailing backslash may be specified to delete only subkeys 1396 fDeleteSubOnly = 0 1396 1397 if rightstr( KeyPath, 1) = '\' then 1398 fDeleteSubOnly = 1 1399 -- Strip trailing '\' 1397 1400 KeyPath = leftstr( KeyPath, length( KeyPath) - 1) 1398 1401 endif … … 1400 1403 1401 1404 --dprintf( 'KeyPath = 'KeyPath) 1402 call DeleteNextConfigKey( KeyPath )1405 call DeleteNextConfigKey( KeyPath, '', fDeleteSubOnly) 1403 1406 1404 1407 return … … 1428 1431 endif 1429 1432 1430 -- Delete key, don't query default values 1431 -- This doesn't find empty values nor empty zero-terminated values. 1432 Val = queryprofile( nepmd_hini, 'RegKeys', KeyPath) 1433 if Val <> '' then 1434 numcfgkeys = numcfgkeys + 1 1435 --dprintf( ' Key found: 'KeyPath' = 'strip( leftstr( translate( Val, '.', \1), 80))) 1436 endif 1437 1438 -- This finds also empty values or empty zero-terminated values. 1439 call DeleteConfigKey( KeyPath) 1433 fDeleteSubOnly = (arg( 3) = 1) 1434 if not fDeleteSubOnly then 1435 -- Delete key, don't query default values 1436 -- This doesn't find empty values nor empty zero-terminated values. 1437 Val = queryprofile( nepmd_hini, 'RegKeys', KeyPath) 1438 if Val <> '' then 1439 numcfgkeys = numcfgkeys + 1 1440 --dprintf( ' Key found: 'KeyPath' = 'strip( leftstr( translate( Val, '.', \1), 80))) 1441 endif 1442 1443 -- This finds also empty values or empty zero-terminated values. 1444 call DeleteConfigKey( KeyPath) 1445 endif 1446 fDeleteSubOnly = 0 1440 1447 1441 1448 -- Delete subkeys and subcontainers … … 1447 1454 1448 1455 -- Process NextKey (recursive call) 1449 call DeleteNextConfigKey( KeyPath'\'NextKey, KeyPath )1456 call DeleteNextConfigKey( KeyPath'\'NextKey, KeyPath, fDeleteSubOnly) 1450 1457 -- Don't stop here on error to delete the rest 1451 1458 --if rc then
Note:
See TracChangeset
for help on using the changeset viewer.