]> git.notmuchmail.org Git - notmuch/blobdiff - notmuch-tag.c
notmuch.el: Reorder notmuch-search-mode keybindings map.
[notmuch] / notmuch-tag.c
index 75d464f20980d7ece09cd25cbec7c0b10582a355..07cb8c5f21b53df36452b3fc14415b63f2f0b075 100644 (file)
@@ -95,7 +95,7 @@ notmuch_tag_command (void *ctx, unused (int argc), unused (char *argv[]))
        return 1;
 
     notmuch = notmuch_database_open (notmuch_config_get_database_path (config),
-                                    NOTMUCH_DATABASE_MODE_WRITABLE);
+                                    NOTMUCH_DATABASE_MODE_READ_WRITE);
     if (notmuch == NULL)
        return 1;
 
@@ -105,7 +105,7 @@ notmuch_tag_command (void *ctx, unused (int argc), unused (char *argv[]))
        return 1;
     }
 
-    for (messages = notmuch_query_search_messages (query, 0, -1);
+    for (messages = notmuch_query_search_messages (query);
         notmuch_messages_has_more (messages) && !interrupted;
         notmuch_messages_advance (messages))
     {