aboutsummaryrefslogtreecommitdiff
path: root/src/tree.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tree.c')
-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)
309 if (strcmp(kwp->ident, node->ident) == 0) { 309 if (strcmp(kwp->ident, node->ident) == 0) {
310 found = kwp; 310 found = kwp;
311 if (kwp->callback 311 if (kwp->callback
312 || node->down 312 || (node->down
313 ? kwp->type == grecs_type_section 313 ? kwp->type == grecs_type_section
314 : kwp->type != grecs_type_section) 314 : kwp->type != grecs_type_section))
315 return kwp; 315 return kwp;
316 } 316 }
317 } 317 }

Return to:

Send suggestions and report system problems to the System administrator.