git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35673 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2010-10-17 18:46:35 +00:00
parent 2de73db948
commit 680b6e78e4

View File

@ -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;
}