~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/_patiencediff_c.c

  • Committer: Danny van Heumen
  • Date: 2010-03-09 16:38:10 UTC
  • mto: (4634.139.5 2.0)
  • mto: This revision was merged to the branch mainline in revision 5160.
  • Revision ID: danny@dannyvanheumen.nl-20100309163810-ujn8hcx08f75nlf1
Refined test to make use of locking hooks and also validate if lock is truly a checkout-lock.

Show diffs side-by-side

added added

removed removed

Lines of Context:
305
305
        apos = SENTINEL;
306
306
        /* loop through all lines in the linked list */
307
307
        for (i = h[equiv].a_pos; i != SENTINEL; i = lines_a[i].next) {
308
 
            /* the index is lower than alo, continue to the next line */
 
308
            /* the index is lower than alo, the the next line */
309
309
            if (i < alo) {
310
310
                h[equiv].a_pos = i;
311
311
                continue;
326
326
        /* check for duplicates of this line in lines_b[blo:bhi] */
327
327
        /* loop through all lines in the linked list */
328
328
        for (i = h[equiv].b_pos; i != SENTINEL; i = lines_b[i].next) {
329
 
            /* the index is lower than blo, continue to the next line */
 
329
            /* the index is lower than blo, the the next line */
330
330
            if (i < blo) {
331
331
                h[equiv].b_pos = i;
332
332
                continue;