aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/notmuch-private.h
diff options
context:
space:
mode:
authorGravatar Austin Clements <amdragon@MIT.EDU>2012-01-14 19:17:33 -0500
committerGravatar David Bremner <bremner@debian.org>2012-01-16 21:06:35 -0400
commit3b76adf9e2c026dd03b820f4c6eab50e25444113 (patch)
tree6bbabb65792ec85f8660ed467b232a0952ff4b1e /lib/notmuch-private.h
parent982096d79df8d47ac62d9a74fa0a9baa9c008812 (diff)
lib: Add support for automatically excluding tags from queries
This is useful for tags like "deleted" and "spam" that people generally want to exclude from query results. These exclusions will be overridden if a tag is explicitly mentioned in a query.
Diffstat (limited to 'lib/notmuch-private.h')
-rw-r--r--lib/notmuch-private.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/notmuch-private.h b/lib/notmuch-private.h
index 60a932fc..7bf153e0 100644
--- a/lib/notmuch-private.h
+++ b/lib/notmuch-private.h
@@ -458,7 +458,7 @@ typedef struct _notmuch_string_node {
struct _notmuch_string_node *next;
} notmuch_string_node_t;
-typedef struct _notmuch_string_list {
+typedef struct visible _notmuch_string_list {
int length;
notmuch_string_node_t *head;
notmuch_string_node_t **tail;