diff options
author | pommicket <pommicket@gmail.com> | 2022-11-03 20:57:40 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2022-11-03 20:59:34 -0400 |
commit | 45a9d9bec845bc62fa24e8390bb55a33ea45f198 (patch) | |
tree | b2f84a9ffca697b4e608309f8109c7e35e9f561e /config.c | |
parent | e84f168f69f9f3d8dc13465adb5628b5b2fa78d3 (diff) |
[1.3] some SettingsContext comments, updated version history
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -27,6 +27,7 @@ static void context_copy(SettingsContext *dest, const SettingsContext *src) { dest->path = str_dup(src->path); } +/* does being in the context of `parent` imply you are in the context of `child`? */ static bool context_is_parent(const SettingsContext *parent, const SettingsContext *child) { if (child->language == 0 && parent->language != 0) return false; |