* minor update

This commit is contained in:
djcb
2013-12-21 10:01:04 -08:00
parent f79170ac6c
commit c48d290699
3 changed files with 12 additions and 8 deletions

View File

@ -298,16 +298,16 @@ index_title (const char* maildir, const char* xapiandir, gboolean color)
"]\n", maildir, xapiandir);
else
g_print ("indexing messages under %s [%s]\n",
maildir, xapiandir);
maildir, xapiandir);
}
static MuError
cmd_index (MuIndex *midx, MuConfig *opts, MuIndexStats *stats, GError **err)
{
IndexData idata;
MuError rv;
gboolean show_progress;
IndexData idata;
MuError rv;
gboolean show_progress;
if (!opts->quiet)
index_title (opts->maildir,
@ -315,8 +315,10 @@ cmd_index (MuIndex *midx, MuConfig *opts, MuIndexStats *stats, GError **err)
!opts->nocolor);
show_progress = !opts->quiet && isatty(fileno(stdout));
idata.color = !opts->nocolor;
idata.color = !opts->nocolor;
newline_before_on();
rv = mu_index_run (midx, opts->maildir, opts->rebuild, stats,
show_progress ?
(MuIndexMsgCallback)index_msg_cb :