diff --git a/src/CLI.cpp b/src/CLI.cpp index 1ba128158..2afd80d03 100644 --- a/src/CLI.cpp +++ b/src/CLI.cpp @@ -1751,6 +1751,7 @@ void CLI::decomposeModAttributeModifiers () //////////////////////////////////////////////////////////////////////////////// void CLI::decomposeModTags () { + bool changes = false; std::vector ::iterator a; for (a = _args.begin (); a != _args.end (); ++a) { @@ -1771,9 +1772,14 @@ void CLI::decomposeModTags () a->attribute ("name", tag); a->attribute ("sign", sign); a->tag ("TAG"); + changes = true; } } } + + if (changes && + context.config.getInteger ("debug.parser") >= 3) + context.debug (context.cli.dump ("CLI::analyze decomposeModTags")); } ////////////////////////////////////////////////////////////////////////////////