mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 13:18:28 +00:00
Handle backslash in escape function.
Fixes: #4595. Candidate for stable
This commit is contained in:
parent
15f64f8413
commit
ef387c81af
@ -1180,7 +1180,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
|
||||
|
Loading…
Reference in New Issue
Block a user