Fix $ escaping in macros.

Fixes #5378
This commit is contained in:
Gunnar Beutner 2014-03-10 09:41:48 +01:00
parent bd37b9b62f
commit a8a955ff9c
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ String MacroProcessor::InternalResolveMacros(const String& str, const std::vecto
}
result.Replace(pos_first, pos_second - pos_first + 1, resolved_macro);
offset = pos_first + resolved_macro.GetLength();
offset = pos_first + resolved_macro.GetLength() + 1;
}
return result;