mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 13:18:28 +00:00
parent
db3768da89
commit
d71e3404fe
@ -464,14 +464,15 @@ docstring InsetCommandParams::prepareCommand(OutputParams const & runparams,
|
|||||||
}
|
}
|
||||||
// Now escape special commands
|
// Now escape special commands
|
||||||
static docstring const backslash = from_ascii("\\");
|
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()) {
|
if (!result.empty()) {
|
||||||
int previous;
|
int previous;
|
||||||
// The characters in chars_name[] need to be changed to a command when
|
// The characters in chars_name[] need to be changed to a command when
|
||||||
// they are LaTeXified.
|
// they are LaTeXified.
|
||||||
for (int k = 0; k < 6; k++)
|
for (int k = 0; k < nchars_escape; k++)
|
||||||
for (size_t i = 0, pos;
|
for (size_t i = 0, pos;
|
||||||
(pos = result.find(chars_escape[k], i)) != string::npos;
|
(pos = result.find(chars_escape[k], i)) != string::npos;
|
||||||
i = pos + 2) {
|
i = pos + 2) {
|
||||||
|
@ -41,6 +41,8 @@ What's new
|
|||||||
|
|
||||||
- Fix the implementation of new libertine font package.
|
- Fix the implementation of new libertine font package.
|
||||||
|
|
||||||
|
- Properly escape braces in non-literate context in insets.
|
||||||
|
|
||||||
|
|
||||||
* LYX2LYX
|
* LYX2LYX
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user