aboutsummaryrefslogtreecommitdiffhomepage
path: root/notmuch.c
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2009-10-25 22:11:09 -0700
committerGravatar Carl Worth <cworth@cworth.org>2009-10-25 22:22:07 -0700
commitcd467cafb5eee180661ebc14e0fb71426e67c855 (patch)
tree08fb936e3f94b7d1de718551a296606f0bfab345 /notmuch.c
parent70f9d0ad428312397ee7ad157b520824d66d0d0e (diff)
Rename notmuch_query_search to notmuch_query_search_messages
Along with renaming notmuch_results_t to notmuch_message_results_t. The new type is quite a mouthful, but I don't expect it to be used much other than the for-loop idiom in the documentation, (which does at least fit nicely within 80 columns). This is all in preparation for the addition of a new notmuch_query_search_threads of course.
Diffstat (limited to 'notmuch.c')
-rw-r--r--notmuch.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/notmuch.c b/notmuch.c
index fbd773d7..47969e1f 100644
--- a/notmuch.c
+++ b/notmuch.c
@@ -608,7 +608,7 @@ search_command (int argc, char *argv[])
void *local = talloc_new (NULL);
notmuch_database_t *notmuch = NULL;
notmuch_query_t *query;
- notmuch_results_t *results;
+ notmuch_message_results_t *results;
notmuch_message_t *message;
notmuch_tags_t *tags;
char *query_str;
@@ -638,12 +638,12 @@ search_command (int argc, char *argv[])
goto DONE;
}
- for (results = notmuch_query_search (query);
- notmuch_results_has_more (results);
- notmuch_results_advance (results))
+ for (results = notmuch_query_search_messages (query);
+ notmuch_message_results_has_more (results);
+ notmuch_message_results_advance (results))
{
int first = 1;
- message = notmuch_results_get (results);
+ message = notmuch_message_results_get (results);
printf ("%s (", notmuch_message_get_message_id (message));
@@ -687,7 +687,7 @@ dump_command (int argc, char *argv[])
FILE *output;
notmuch_database_t *notmuch = NULL;
notmuch_query_t *query;
- notmuch_results_t *results;
+ notmuch_message_results_t *results;
notmuch_message_t *message;
notmuch_tags_t *tags;
int ret = 0;
@@ -719,12 +719,12 @@ dump_command (int argc, char *argv[])
notmuch_query_set_sort (query, NOTMUCH_SORT_MESSAGE_ID);
- for (results = notmuch_query_search (query);
- notmuch_results_has_more (results);
- notmuch_results_advance (results))
+ for (results = notmuch_query_search_messages (query);
+ notmuch_message_results_has_more (results);
+ notmuch_message_results_advance (results))
{
int first = 1;
- message = notmuch_results_get (results);
+ message = notmuch_message_results_get (results);
fprintf (output,
"%s (", notmuch_message_get_message_id (message));