512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
|
** 2. The local (per-repository) "comment-format" setting.
** 3. The global (all-repositories) "comment-format" setting.
** 4. The default value COMMENT_PRINT_DEFAULT.
*/
int get_comment_format(){
int comFmtFlags;
/* We must cache this result, else
** running the timeline can end up querying the comment-format
** setting from the global db once per timeline entry, which brings
** it to a crawl if that db is network-mounted. Discussed in:
** https://fossil-scm.org/forum/forumpost/9aaefe4e536e01bf */
/* The global command-line option is present, or the value has been cached. */
if( g.comFmtFlags!=COMMENT_PRINT_UNSET ){
return g.comFmtFlags;
}
/* Load the local (per-repository) or global (all-repositories) value, and use
|
|
|
|
|
|
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
|
** 2. The local (per-repository) "comment-format" setting.
** 3. The global (all-repositories) "comment-format" setting.
** 4. The default value COMMENT_PRINT_DEFAULT.
*/
int get_comment_format(){
int comFmtFlags;
/* We must cache this result, else running the timeline can end up
** querying the comment-format setting from the global db once per
** timeline entry, which brings it to a crawl if that db is
** network-mounted. Discussed in:
** https://fossil-scm.org/forum/forumpost/9aaefe4e536e01bf */
/* The global command-line option is present, or the value has been cached. */
if( g.comFmtFlags!=COMMENT_PRINT_UNSET ){
return g.comFmtFlags;
}
/* Load the local (per-repository) or global (all-repositories) value, and use
|