mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 01:59:02 +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_) {
|
||||
os_ << c;
|
||||
nextraw_ = false;
|
||||
} else
|
||||
os_ << html::escapeChar(c);
|
||||
} else {
|
||||
string const d = html::escapeChar(c);
|
||||
os_ << from_ascii(d);
|
||||
}
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user