mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-23 10:18:50 +00:00
Don't double-escape things.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32464 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
f162067a61
commit
0d0a1c6457
@ -2312,7 +2312,7 @@ pos_type Paragraph::firstWordLyXHTML(XHTMLStream & xs, OutputParams const & runp
|
|||||||
char_type c = d->text_[i];
|
char_type c = d->text_[i];
|
||||||
if (c == ' ')
|
if (c == ' ')
|
||||||
break;
|
break;
|
||||||
xs << html::escapeChar(c);
|
xs << c;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return i;
|
return i;
|
||||||
|
Loading…
Reference in New Issue
Block a user