Fix problem with unbalanced braces in XeTeX output (bug #8765)

This commit is contained in:
Juergen Spitzmueller 2013-07-11 18:05:50 +02:00
parent 0f72029c9b
commit 2dfe540371
2 changed files with 5 additions and 0 deletions

View File

@ -284,6 +284,9 @@ int Font::latexWriteStartChanges(odocstream & os, BufferParams const & bparams,
tmp += "{";
os << from_ascii(tmp);
count += tmp.length();
} else {
os << '{';
count += 1;
}
} else if (language()->babel() != base.language()->babel() &&
language() != prev.language()) {

View File

@ -52,6 +52,8 @@ What's new
* DOCUMENT INPUT/OUTPUT
- Fix problem with unbalanced braces in XeTeX output (bug 8765).
- Added h5 and h6 as tags for Paragraph and Subparagraph.
- Include alt tag when exporting math as images (bug 8746).