X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FLexer.cpp;h=78bf9f49c23394c86c265eabbadebd911d349b67;hb=bf56e2c8e1afa857cd5e313c19948040e41b8227;hp=fa9ffc71e8155040ff9c0b01dd802eee3f520a3d;hpb=cf44bb842b8e22b8ecad51170677281c2d6c231d;p=lyx.git diff --git a/src/Lexer.cpp b/src/Lexer.cpp index fa9ffc71e8..78bf9f49c2 100644 --- a/src/Lexer.cpp +++ b/src/Lexer.cpp @@ -320,12 +320,11 @@ bool Lexer::Pimpl::next(bool esc /* = false */) } - unsigned char c = 0; // getc() returns an int char cc = 0; status = 0; while (is && !status) { is.get(cc); - c = cc; + unsigned char c = cc; if (c == commentChar) { // Read rest of line (fast :-) @@ -348,9 +347,8 @@ bool Lexer::Pimpl::next(bool esc /* = false */) if (esc) { - bool escaped = false; do { - escaped = false; + bool escaped = false; is.get(cc); c = cc; if (c == '\r') continue; @@ -720,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(char_type(' ')); if (i != string::npos) prefix = tmpstr.substr(0, i); firstline = false; @@ -757,7 +754,7 @@ string const Lexer::getLongString(string const & endtoken) } if (!pimpl_->is) - printError("Long string not ended by `" + endtoken + '\''); + printError("Long string not ended by `" + to_utf8(endtoken) + '\''); return str; }