~ubuntu-branches/ubuntu/intrepid/git-core/intrepid-updates

« back to all changes in this revision

Viewing changes to wt-status.c

  • Committer: Package Import Robot
  • Author(s): Gerrit Pape
  • Date: 2007-10-04 08:27:01 UTC
  • mfrom: (1.1.23)
  • Revision ID: package-import@ubuntu.com-20071004082701-rsd058ontoqz4i30
Tags: 1:1.5.3.4-1
new upstream point release (closes: #445188).

Show diffs side-by-side

added added

removed removed

Lines of Context:
198
198
        read_cache();
199
199
}
200
200
 
201
 
void wt_status_print_initial(struct wt_status *s)
 
201
static void wt_status_print_initial(struct wt_status *s)
202
202
{
203
203
        int i;
204
204
        char buf[PATH_MAX];
227
227
        rev.diffopt.format_callback = wt_status_print_updated_cb;
228
228
        rev.diffopt.format_callback_data = s;
229
229
        rev.diffopt.detect_rename = 1;
 
230
        rev.diffopt.rename_limit = 100;
230
231
        wt_read_cache(s);
231
232
        run_diff_index(&rev, 1);
232
233
}