aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/tree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tree.c b/src/tree.c
index 27a6f21..2afe899 100644
--- a/src/tree.c
+++ b/src/tree.c
@@ -309,9 +309,9 @@ find_keyword(struct grecs_keyword *cursect, grecs_node_t *node)
if (strcmp(kwp->ident, node->ident) == 0) {
found = kwp;
if (kwp->callback
- || node->down
+ || (node->down
? kwp->type == grecs_type_section
- : kwp->type != grecs_type_section)
+ : kwp->type != grecs_type_section))
return kwp;
}
}

Return to:

Send suggestions and report system problems to the System administrator.