Handle backslash in escape function.

Fixes: #4595.

Candidate for stable
This commit is contained in:
Juergen Spitzmueller 2017-01-27 09:15:47 +01:00
parent efca146571
commit a50ad8f926
2 changed files with 4 additions and 1 deletions

View File

@ -1179,7 +1179,8 @@ docstring const escape(docstring const & lab)
for (size_t i = 0; i < lab.length(); ++i) {
char_type c = lab[i];
if (c >= 128 || c == '=' || c == '%' || c == '#' || c == '$'
|| c == '}' || c == '{' || c == ']' || c == '[' || c == '&') {
|| c == '}' || c == '{' || c == ']' || c == '[' || c == '&'
|| c == '\\') {
// Although char_type is a 32 bit type we know that
// UCS4 occupies only 21 bits, so we don't need to
// encode bigger values. Test for 2^24 because we

View File

@ -125,6 +125,8 @@ What's new
- Protect citation arguments (pre and post text) which contain brackets
(part of bug 2751).
- Handle backslash in label and ref insets (bug 4595).
* LYX2LYX