427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
|
z = mprintf("%s [%S] %s", zDate, zId, zCom);
comment_print(z, zCom, 7, width, g.comFmtFlags);
fossil_free(z);
}
}
fossil_free(zLastBr);
db_finalize(&q);
if( showForks && !zLastBr ) fossil_print("*** OK, no ambigeous branches found ***\n");
}
/*
** WEBPAGE: leaves
**
** Find leaves of all branches.
*/
|
|
|
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
|
z = mprintf("%s [%S] %s", zDate, zId, zCom);
comment_print(z, zCom, 7, width, g.comFmtFlags);
fossil_free(z);
}
}
fossil_free(zLastBr);
db_finalize(&q);
if( showForks && !zLastBr ) fossil_print("*** OK, no ambigeous branch found ***\n");
}
/*
** WEBPAGE: leaves
**
** Find leaves of all branches.
*/
|