From: Richard Heck Date: Thu, 18 Nov 2010 22:19:39 +0000 (+0000) Subject: Line length. X-Git-Tag: 2.0.0~1777 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=352db528595e24f341c8734f0346835f8ace8256;p=lyx.git Line length. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@36389 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/BufferParams.cpp b/src/BufferParams.cpp index 6ca310908e..9630d63119 100644 --- a/src/BufferParams.cpp +++ b/src/BufferParams.cpp @@ -547,7 +547,8 @@ string BufferParams::readToken(Lexer & lex, string const & token, lex.next(); string const classname = lex.getString(); // if there exists a local layout file, ignore the system one - // NOTE: in this case, the textclass (.cls file) is assumed to be available. + // NOTE: in this case, the textclass (.cls file) is assumed to + // be available. string tcp; LayoutFileList & bcl = LayoutFileList::get(); if (tcp.empty() && !filepath.empty()) @@ -556,12 +557,13 @@ string BufferParams::readToken(Lexer & lex, string const & token, setBaseClass(tcp); else setBaseClass(classname); - // We assume that a tex class exists for local or unknown layouts so this warning - // will only be given for system layouts. + // We assume that a tex class exists for local or unknown + // layouts so this warning, will only be given for system layouts. if (!baseClass()->isTeXClassAvailable()) { docstring const desc = translateIfPossible(from_utf8(baseClass()->description())); - docstring const prereqs = from_utf8(baseClass()->prerequisites()); + docstring const prereqs = + from_utf8(baseClass()->prerequisites()); docstring const msg = bformat(_("The selected document class\n" "\t%1$s\n"