X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FLexer.cpp;h=098faa9737282c3fc40458ec67665b26b8b881ef;hb=18ebcab4035c3adc9ae15132b7ffc674f734238e;hp=25d337a0793287e3ac6ba8e532dc74ca821b076f;hpb=b6aed54c45cf4a479cfd11e3e6851194f5a05947;p=lyx.git diff --git a/src/Lexer.cpp b/src/Lexer.cpp index 25d337a079..098faa9737 100644 --- a/src/Lexer.cpp +++ b/src/Lexer.cpp @@ -148,7 +148,7 @@ public: } }; -} // end of anon namespace +} // namespace Lexer::Pimpl::Pimpl(LexerKeyword * tab, int num) @@ -239,7 +239,7 @@ void Lexer::Pimpl::popTable() bool Lexer::Pimpl::setFile(FileName const & filename) { // Check the format of the file. - if (formats.isZippedFile(filename)) { + if (theFormats().isZippedFile(filename)) { LYXERR(Debug::LYXLEX, "lyxlex: compressed"); // The check only outputs a debug message, because it triggers // a bug in compaq cxx 6.2, where is_open() returns 'true' for @@ -718,28 +718,27 @@ docstring const Lexer::getDocString(bool trim) const // I would prefer to give a tag number instead of an explicit token // here, but it is not possible because Buffer::readDocument uses // explicit tokens (JMarc) -string const Lexer::getLongString(string const & endtoken) +docstring Lexer::getLongString(docstring const & endtoken) { - string str; - string prefix; + docstring str; + docstring prefix; bool firstline = true; while (pimpl_->is) { //< eatLine only reads from is, not from pushTok if (!eatLine()) // blank line in the file being read continue; + docstring tmpstr = getDocString(); + docstring const token = trim(tmpstr, " \t"); - string const token = trim(getString(), " \t"); - - LYXERR(Debug::PARSER, "LongString: `" << getString() << '\''); + LYXERR(Debug::PARSER, "LongString: `" << tmpstr << '\''); // We do a case independent comparison, like searchKeyword does. - if (compare_ascii_no_case(token, endtoken) == 0) + if (compare_no_case(token, endtoken) == 0) break; - string tmpstr = getString(); if (firstline) { - size_t i = tmpstr.find_first_not_of(' '); + size_t i = tmpstr.find_first_not_of(from_ascii(" \t")); if (i != string::npos) prefix = tmpstr.substr(0, i); firstline = false; @@ -748,14 +747,14 @@ string const Lexer::getLongString(string const & endtoken) // further lines in long strings may have the same // whitespace prefix as the first line. Remove it. - if (prefix.length() && prefixIs(tmpstr, prefix)) - tmpstr.erase(0, prefix.length() - 1); + if (!prefix.empty() && prefixIs(tmpstr, prefix)) + tmpstr.erase(0, prefix.length()); - str += ltrim(tmpstr, "\t") + '\n'; + str += tmpstr + '\n'; } if (!pimpl_->is) - printError("Long string not ended by `" + endtoken + '\''); + printError("Long string not ended by `" + to_utf8(endtoken) + '\''); return str; } @@ -763,7 +762,7 @@ string const Lexer::getLongString(string const & endtoken) bool Lexer::getBool() const { - string const s = pimpl_->getString(); + string const s = pimpl_->getString(); if (s == "false" || s == "0") { lastReadOk_ = true; return false; @@ -918,7 +917,7 @@ docstring Lexer::quoteString(docstring const & arg) { docstring res; res += '"'; - res += subst(subst(arg, from_ascii("\\"), from_ascii("\\\\")), + res += subst(subst(arg, from_ascii("\\"), from_ascii("\\\\")), from_ascii("\""), from_ascii("\\\"")); res += '"'; return res; @@ -930,7 +929,7 @@ Lexer & Lexer::operator>>(char const * required) string token; *this >> token; if (token != required) { - LYXERR0("Missing '" << required << "'-tag in " << pimpl_->context + LYXERR0("Missing '" << required << "'-tag in " << pimpl_->context << ". Got " << token << " instead. Line: " << lineNumber()); pushToken(token); }