aboutsummaryrefslogtreecommitdiffhomepage
path: root/notmuch-config.c
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2010-04-23 10:29:28 -0700
committerGravatar Carl Worth <cworth@cworth.org>2010-04-23 10:29:28 -0700
commitc63b6473ca6b391dc858672cf36f56ec0baf3e35 (patch)
tree303c7e7e59701641d81aaf98bdb85851b620375b /notmuch-config.c
parent444923e2d0ddbf7c3890296354aebdb54f1efda8 (diff)
config: Rename messages.new_tags to just new.tags
I think one configuration group for each top-level command makes a lot of sense. And this makes the existing naming of set_new_tags and get_new_tags also very reasonable.
Diffstat (limited to 'notmuch-config.c')
-rw-r--r--notmuch-config.c23
1 files changed, 11 insertions, 12 deletions
diff --git a/notmuch-config.c b/notmuch-config.c
index 0a050909..58f83b0d 100644
--- a/notmuch-config.c
+++ b/notmuch-config.c
@@ -37,13 +37,13 @@ static const char database_config_comment[] =
" Notmuch will store its database within a sub-directory of the path\n"
" configured here named \".notmuch\".\n";
-static const char messages_config_comment[] =
- " Messages configuration\n"
+static const char new_config_comment[] =
+ " Configuration for \"notmuch new\"\n"
"\n"
" The following options are supported here:\n"
"\n"
- "\tnew_tags A list (separated by ';') of the tags that will be\n"
- "\t added to all messages incorporated by \"notmuch new\".\n";
+ "\ttags A list (separated by ';') of the tags that will be\n"
+ "\t added to all messages incorporated by \"notmuch new\".\n";
static const char user_config_comment[] =
" User configuration\n"
@@ -182,7 +182,7 @@ notmuch_config_open (void *ctx,
size_t tmp;
char *notmuch_config_env = NULL;
int file_had_database_group;
- int file_had_messages_group;
+ int file_had_new_group;
int file_had_user_group;
if (is_new_ret)
@@ -252,8 +252,7 @@ notmuch_config_open (void *ctx,
*/
file_had_database_group = g_key_file_has_group (config->key_file,
"database");
- file_had_messages_group = g_key_file_has_group (config->key_file,
- "messages");
+ file_had_new_group = g_key_file_has_group (config->key_file, "new");
file_had_user_group = g_key_file_has_group (config->key_file, "user");
@@ -320,10 +319,10 @@ notmuch_config_open (void *ctx,
database_config_comment, NULL);
}
- if (! file_had_messages_group)
+ if (! file_had_new_group)
{
- g_key_file_set_comment (config->key_file, "messages", NULL,
- messages_config_comment, NULL);
+ g_key_file_set_comment (config->key_file, "new", NULL,
+ new_config_comment, NULL);
}
if (! file_had_user_group)
@@ -520,7 +519,7 @@ notmuch_config_get_new_tags (notmuch_config_t *config,
if (config->new_tags == NULL) {
tags = g_key_file_get_string_list (config->key_file,
- "messages", "new_tags",
+ "new", "tags",
&tags_length, NULL);
if (tags) {
config->new_tags = talloc_size (config,
@@ -547,7 +546,7 @@ notmuch_config_set_new_tags (notmuch_config_t *config,
size_t length)
{
g_key_file_set_string_list (config->key_file,
- "messages", "new_tags",
+ "new", "tags",
new_tags, length);
talloc_free (config->new_tags);