/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to diff-delta.c

  • Committer: John Arbash Meinel
  • Date: 2009-03-02 19:36:29 UTC
  • mto: (0.17.31 trunk)
  • mto: This revision was merged to the branch mainline in revision 4280.
  • Revision ID: john@arbash-meinel.com-20090302193629-51hqsvh1rhh71gku
We now start to make use of the ability to extend the delta index
with new sources. Next step is to understand the delta encoding, so as to
avoid linking up with lines in the deltas.

Show diffs side-by-side

added added

removed removed

Lines of Context:
341
341
                index = indexes[j];
342
342
                i += index->src_size;
343
343
        }
 
344
        assert(i <= index->src_size + index->agg_src_offset);
 
345
        i = index->src_size + index->agg_src_offset;
344
346
        while (i >= 0x80) {
345
347
                out[outpos++] = i | 0x80;
346
348
                i >>= 7;