mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 05:16:21 +00:00
parent
db3768da89
commit
d71e3404fe
@ -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) {
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user