~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/_patiencediff_c.c

  • Committer: Martin Pool
  • Date: 2009-10-29 05:57:55 UTC
  • mto: This revision was merged to the branch mainline in revision 4776.
  • Revision ID: mbp@sourcefrog.net-20091029055755-t6kww29c2zub11of
Additional 'the the' occurrences in non-Python files

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 the next line */
323
323
            if (i < blo) {
324
324
                h[equiv].b_pos = i;
325
325
                continue;