* mu-cmd: don't print newline when quiet with _cmd_index and _cmd_cleanup

This commit is contained in:
Dirk-Jan C. Binnema 2010-01-04 21:23:03 +02:00
parent 9512b36c32
commit dec26eeb77
1 changed files with 8 additions and 2 deletions

View File

@ -378,7 +378,10 @@ _cmd_index (MuConfigOptions *opts)
opts->quiet ? NULL : _index_msg_cb,
NULL);
}
g_print ("\n");
if (!opts->quiet)
g_print ("\n");
mu_index_destroy (midx);
}
mu_msg_gmime_uninit ();
@ -431,7 +434,10 @@ _cmd_cleanup (MuConfigOptions *opts)
NULL);
mu_index_destroy (midx);
}
g_print ("\n");
if (!opts->quiet)
g_print ("\n");
mu_msg_gmime_uninit ();
return rv == MU_OK ? TRUE : FALSE;