Fix isSpace for docstring

This commit is contained in:
Yuriy Skalko 2020-10-24 11:03:36 +03:00
parent 12557b094c
commit 69f838bbf3
2 changed files with 2 additions and 2 deletions

View File

@ -1276,7 +1276,7 @@ void InsetBibtex::docbook(XMLStream & xs, OutputParams const &) const
xs << xml::StartTag("keywordset") << xml::CR();
for (auto & kw: keywords) {
kw.erase(kw.begin(), std::find_if(kw.begin(), kw.end(),
[](int c) {return !std::isspace(c);}));
[](char_type c) {return !lyx::isSpace(c);}));
xs << xml::StartTag("keyword");
xs << kw;
xs << xml::EndTag("keyword");

View File

@ -143,7 +143,7 @@ docstring CompTag::writeTag() const
// automatically.
docstring attributes = escapeString(attr_, XMLStream::ESCAPE_NONE);
attributes.erase(attributes.begin(), std::find_if(attributes.begin(), attributes.end(),
[](int c) {return !std::isspace(c);}));
[](char_type c) {return !isSpace(c);}));
if (!attributes.empty()) {
output += ' ' + attributes;
}