Fossil

Check-in [c693d82d]
Login

Check-in [c693d82d]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Fix the graph of changes for individual files - broken by recent work on the graph generator.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: c693d82da27742ef23b631a4bee8ecd9af9b0dcc
User & Date: drh 2016-03-21 16:34:50.244
Context
2016-03-22
16:34
Update the built-in SQLite to the second 3.12.0 beta. ... (check-in: 314f1942 user: drh tags: trunk)
2016-03-21
16:34
Fix the graph of changes for individual files - broken by recent work on the graph generator. ... (check-in: c693d82d user: drh tags: trunk)
16:08
Update the built-in SQLite to the first 3.12.0 beta. ... (check-in: fbc2f1c2 user: drh tags: trunk)
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/graph.c.
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
        }
      }
    }
    mask = BIT(pRow->iRail);
    pRow->railInUse |= mask;
    if( pRow->pChild ){
      assignChildrenToRail(pRow);
    }else if( !pRow->isLeaf ){
      riser_to_top(pRow);
    }
    if( pParent ){
      for(pLoop=pParent->pPrev; pLoop && pLoop!=pRow; pLoop=pLoop->pPrev){
        pLoop->railInUse |= mask;
      }
    }







|







517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
        }
      }
    }
    mask = BIT(pRow->iRail);
    pRow->railInUse |= mask;
    if( pRow->pChild ){
      assignChildrenToRail(pRow);
    }else if( !pRow->isLeaf && !omitDescenders ){
      riser_to_top(pRow);
    }
    if( pParent ){
      for(pLoop=pParent->pPrev; pLoop && pLoop!=pRow; pLoop=pLoop->pPrev){
        pLoop->railInUse |= mask;
      }
    }