summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2022-11-03 20:57:40 -0400
committerpommicket <pommicket@gmail.com>2022-11-03 20:59:34 -0400
commit45a9d9bec845bc62fa24e8390bb55a33ea45f198 (patch)
treeb2f84a9ffca697b4e608309f8109c7e35e9f561e /config.c
parente84f168f69f9f3d8dc13465adb5628b5b2fa78d3 (diff)
[1.3] some SettingsContext comments, updated version history
Diffstat (limited to 'config.c')
-rw-r--r--config.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/config.c b/config.c
index d886756..887c466 100644
--- a/config.c
+++ b/config.c
@@ -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;