Skip to content

Commit

Permalink
Change diff's internal struct pattern to simplify the picture a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
hausdorff committed May 12, 2011
1 parent 4bd97fa commit a49f4de
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/libdiff/include.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,6 @@ struct edit {
};


struct edt_scrpt {
struct edit *head;
};


struct record {
unsigned long start;
unsigned long end;
Expand All @@ -46,7 +41,7 @@ struct diff_env {
struct record *rcrds1, *rcrds2;
size_t num_rcrds1, num_rcrds2;
size_t rcrds_guess1, rcrds_guess2;
struct edt_scrpt *script;
struct edit *edt_scrpt;
};


Expand Down

0 comments on commit a49f4de

Please sign in to comment.