~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/_patiencediff_c.c

  • Committer: John Arbash Meinel
  • Date: 2010-02-17 17:11:16 UTC
  • mfrom: (4797.2.17 2.1)
  • mto: (4797.2.18 2.1)
  • mto: This revision was merged to the branch mainline in revision 5055.
  • Revision ID: john@arbash-meinel.com-20100217171116-h7t9223ystbnx5h8
merge bzr.2.1 in preparation for NEWS entry.

Show diffs side-by-side

added added

removed removed

Lines of Context:
298
298
        apos = SENTINEL;
299
299
        /* loop through all lines in the linked list */
300
300
        for (i = h[equiv].a_pos; i != SENTINEL; i = lines_a[i].next) {
301
 
            /* the index is lower than alo, the the next line */
 
301
            /* the index is lower than alo, continue to the next line */
302
302
            if (i < alo) {
303
303
                h[equiv].a_pos = i;
304
304
                continue;
319
319
        /* check for duplicates of this line in lines_b[blo:bhi] */
320
320
        /* loop through all lines in the linked list */
321
321
        for (i = h[equiv].b_pos; i != SENTINEL; i = lines_b[i].next) {
322
 
            /* the index is lower than blo, the the next line */
 
322
            /* the index is lower than blo, continue to the next line */
323
323
            if (i < blo) {
324
324
                h[equiv].b_pos = i;
325
325
                continue;