| | @@ -352,11 +352,11 @@ |
| 352 | 352 | gtcore datacmd [mymethod ExpandData] |
| 353 | 353 | gtcore formatcmd [mymethod ExpandFormat] |
| 354 | 354 | gtcore sortcmd [mymethod ExpandSort] |
| 355 | 355 | gtcore savecmd [mymethod Expand1 $ac $dir $max] |
| 356 | 356 | |
| 357 | | - gtcore traverse $ex ; # The graph is gone after the call |
| 357 | + gtcore traverse $ex |
| 358 | 358 | close $ac |
| 359 | 359 | |
| 360 | 360 | # Now traverse the import graph, this builds the instruction |
| 361 | 361 | # map for the fossil deltas. |
| 362 | 362 | |
| | @@ -364,15 +364,18 @@ |
| 364 | 364 | gtcore formatcmd [mymethod ExpandFormat] |
| 365 | 365 | gtcore sortcmd [mymethod ExpandSort] |
| 366 | 366 | gtcore savecmd [mymethod Expand2] |
| 367 | 367 | |
| 368 | 368 | set myimport {} |
| 369 | | - gtcore traverse $zp ; # The graph is gone after the call |
| 369 | + gtcore traverse $zp |
| 370 | 370 | set filemap $myimport |
| 371 | 371 | unset myimport |
| 372 | 372 | |
| 373 | 373 | # And back to import control |
| 374 | + |
| 375 | + $ex destroy |
| 376 | + $zp destroy |
| 374 | 377 | |
| 375 | 378 | return [list $filemap $revmap] |
| 376 | 379 | } |
| 377 | 380 | |
| 378 | 381 | method ExpandData {graph node} { return [$graph node get $node revnr] } |
| 379 | 382 | |