mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Fix bug #6953.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35673 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
2de73db948
commit
680b6e78e4
@ -292,8 +292,10 @@ XHTMLStream & XHTMLStream::operator<<(char c)
|
|||||||
if (nextraw_) {
|
if (nextraw_) {
|
||||||
os_ << c;
|
os_ << c;
|
||||||
nextraw_ = false;
|
nextraw_ = false;
|
||||||
} else
|
} else {
|
||||||
os_ << html::escapeChar(c);
|
string const d = html::escapeChar(c);
|
||||||
|
os_ << from_ascii(d);
|
||||||
|
}
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user