mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
cli/config: add accessor for config file name
This is intended for use in temporary code transitioning to the new configuration system. The name is chosen to avoid cluttering the notmuch_config_* namespace further with non-library functions.
This commit is contained in:
parent
d613d10ddd
commit
dd6b507099
2 changed files with 5 additions and 0 deletions
|
@ -334,6 +334,8 @@ void
|
|||
notmuch_config_set_search_exclude_tags (notmuch_config_t *config,
|
||||
const char *list[],
|
||||
size_t length);
|
||||
const char *
|
||||
_notmuch_config_get_path (notmuch_config_t *config);
|
||||
|
||||
int
|
||||
notmuch_run_hook (const char *db_path, const char *hook);
|
||||
|
|
|
@ -510,6 +510,9 @@ notmuch_config_close (notmuch_config_t *config)
|
|||
talloc_free (config);
|
||||
}
|
||||
|
||||
const char *_notmuch_config_get_path (notmuch_config_t *config) {
|
||||
return config->filename;
|
||||
}
|
||||
/* Save any changes made to the notmuch configuration.
|
||||
*
|
||||
* Any comments originally in the file will be preserved.
|
||||
|
|
Loading…
Reference in a new issue