* mu-query: cosmetics

This commit is contained in:
Dirk-Jan C. Binnema 2009-11-28 20:56:44 +02:00
parent bc99a753da
commit 30d5a1335e
1 changed files with 9 additions and 6 deletions

View File

@ -75,6 +75,7 @@ display_field (MuMsgXapian *row, const MuMsgField* field)
} }
/* returns NULL if there is an error */
const MuMsgField* const MuMsgField*
sort_field_from_string (const char* fieldstr) sort_field_from_string (const char* fieldstr)
{ {
@ -93,6 +94,7 @@ sort_field_from_string (const char* fieldstr)
} }
/* FIXME */
static gboolean static gboolean
handle_options (MuConfigOptions *opts) handle_options (MuConfigOptions *opts)
{ {
@ -109,10 +111,10 @@ handle_options (MuConfigOptions *opts)
static gboolean static gboolean
print_rows (MuQueryXapian *xapian, const gchar *query, MuConfigOptions *opts) print_rows (MuQueryXapian *xapian, const gchar *query, MuConfigOptions *opts)
{ {
MuMsgXapian *row; MuMsgXapian *row;
const MuMsgField *sortfield; const MuMsgField *sortfield;
sortfield = NULL; sortfield = NULL;
if (opts->sortfield_str) { if (opts->sortfield_str) {
sortfield = sort_field_from_string (opts->sortfield_str); sortfield = sort_field_from_string (opts->sortfield_str);
if (!sortfield) /* error occured? */ if (!sortfield) /* error occured? */
@ -126,10 +128,11 @@ print_rows (MuQueryXapian *xapian, const gchar *query, MuConfigOptions *opts)
g_printerr ("error: running query failed\n"); g_printerr ("error: running query failed\n");
return FALSE; return FALSE;
} }
/* iterate over the found rows */
while (!mu_msg_xapian_is_done (row)) { while (!mu_msg_xapian_is_done (row)) {
const char* fields = opts->fields; const char* fields = opts->fields;
int printlen = 0; int printlen = 0;
while (*fields) { while (*fields) {
const MuMsgField* field = const MuMsgField* field =
mu_msg_field_from_shortcut (*fields); mu_msg_field_from_shortcut (*fields);