Not logged in
Diff

Differences From Artifact [2950f7d95e]:

  • File src/bisect.c — part of check-in [eec11147cf] at 2012-10-05 13:44:55 on branch trunk — Enhancements to the "bisect" command: (1) Create alias "ls" for the "vlist" subcommand. (2) Show an abbreviated listing unless the --all option is used. (3) Automatically show the abbreviated listing after each "next". (user: drh size: 8184) [more...]

To Artifact [2be3eb3521]:

  • File src/bisect.c — part of check-in [b41ebf256f] at 2012-12-11 13:13:51 on branch trunk — Clarify the "omitted checkin" message on "fossil bisect vlist". (user: drh size: 8190) [more...]

121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
    }
  }
  for(p=path_last(), n=0; p; p=p->pFrom, n++){
    if( p->isHidden && (nHidden || (p->pFrom && p->pFrom->isHidden)) ){
      nHidden++;
      continue;
    }else if( nHidden ){
      fossil_print("  ... eliding %d check-ins\n", nHidden);
      nHidden = 0;
    }
    db_bind_int(&s, ":rid", p->rid);
    if( db_step(&s)==SQLITE_ROW ){
      const char *zUuid = db_column_text(&s, 0);
      const char *zDate = db_column_text(&s, 1);
      fossil_print("%s %S", zDate, zUuid);







|







121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
    }
  }
  for(p=path_last(), n=0; p; p=p->pFrom, n++){
    if( p->isHidden && (nHidden || (p->pFrom && p->pFrom->isHidden)) ){
      nHidden++;
      continue;
    }else if( nHidden ){
      fossil_print("  ... %d other check-ins omitted\n", nHidden);
      nHidden = 0;
    }
    db_bind_int(&s, ":rid", p->rid);
    if( db_step(&s)==SQLITE_ROW ){
      const char *zUuid = db_column_text(&s, 0);
      const char *zDate = db_column_text(&s, 1);
      fossil_print("%s %S", zDate, zUuid);