Braces need to be escaped as well on LATEXIFY

part of #9563
This commit is contained in:
Juergen Spitzmueller 2018-03-06 18:17:01 +01:00 committed by Richard Heck
parent db3768da89
commit d71e3404fe
2 changed files with 6 additions and 3 deletions

View File

@ -464,14 +464,15 @@ docstring InsetCommandParams::prepareCommand(OutputParams const & runparams,
}
// Now escape special commands
static docstring const backslash = from_ascii("\\");
static char_type const chars_escape[6] = {
'&', '_', '$', '%', '#', '^'};
int const nchars_escape = 8;
static char_type const chars_escape[nchars_escape] = {
'&', '_', '$', '%', '#', '^', '{', '}'};
if (!result.empty()) {
int previous;
// The characters in chars_name[] need to be changed to a command when
// they are LaTeXified.
for (int k = 0; k < 6; k++)
for (int k = 0; k < nchars_escape; k++)
for (size_t i = 0, pos;
(pos = result.find(chars_escape[k], i)) != string::npos;
i = pos + 2) {

View File

@ -41,6 +41,8 @@ What's new
- Fix the implementation of new libertine font package.
- Properly escape braces in non-literate context in insets.
* LYX2LYX