aboutsummaryrefslogtreecommitdiffhomepage
path: root/notmuch.h
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2009-10-20 22:40:37 -0700
committerGravatar Carl Worth <cworth@cworth.org>2009-10-20 22:40:37 -0700
commit6519aff957df7a69d86ed9a00707c911d60259f6 (patch)
tree7f85fc1fb047fedcafadc013022a794f363fd6d4 /notmuch.h
parentaad13c3ac947a42b3e0a1923c44a927feea827f5 (diff)
query: Remove the magic NOTMUCH_QUERY_ALL
Using the address of a static char* was clever, but really unnecessary. An empty string is much less magic, and even easier to understand as the way to query everything from the database.
Diffstat (limited to 'notmuch.h')
-rw-r--r--notmuch.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/notmuch.h b/notmuch.h
index 10067d3f..df432bcc 100644
--- a/notmuch.h
+++ b/notmuch.h
@@ -174,9 +174,8 @@ notmuch_database_add_message (notmuch_database_t *database,
*
* http://xapian.org/docs/queryparser.html
*
- * As a special case, passing a value of NOTMUCH_QUERY_ALL for the
- * query string will result in a query that returns all messages in
- * the database.
+ * As a special case, passing a length-zero string, (that is ""), will
+ * result in a query that returns all messages in the database.
*
* See notmuch_query_set_sort for controlling the order of results and
* notmuch_query_search to actually execute the query.
@@ -190,10 +189,6 @@ notmuch_query_t *
notmuch_query_create (notmuch_database_t *database,
const char *query_string);
-/* Special value to cause notmuch_query_create to return all
- * messages. */
-extern const char *NOTMUCH_QUERY_ALL;
-
/* Sort values for notmuch_query_set_sort */
typedef enum {
NOTMUCH_SORT_DATE_OLDEST_FIRST,