From 3b314b5d856f6f7a25d512737e640a6b7b17c8d4 Mon Sep 17 00:00:00 2001 From: Maksim Shabunin Date: Mon, 27 Jul 2015 18:29:52 +0300 Subject: [PATCH] Actually using value of GROUP_NESTED_COMPOUNDS option --- src/scanner.l | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scanner.l b/src/scanner.l index 328dc3fb5b0..e9d5707adb4 100644 --- a/src/scanner.l +++ b/src/scanner.l @@ -6749,7 +6749,7 @@ static void parseCompounds(Entry *rt) // deep copy group list from parent (see bug 727732) static bool autoGroupNested = Config_getBool("GROUP_NESTED_COMPOUNDS"); - if (rt->groups && ce->section!=Entry::ENUM_SEC && !(ce->spec&Entry::Enum)) + if (autoGroupNested && rt->groups && ce->section!=Entry::ENUM_SEC && !(ce->spec&Entry::Enum)) { QListIterator gli(*rt->groups); Grouping *g;