Whitespace.

This commit is contained in:
Richard Heck 2013-05-23 09:39:16 -04:00
parent 1230372566
commit f34394460a
2 changed files with 5 additions and 5 deletions

View File

@ -826,14 +826,14 @@ string const LaTeXFeatures::getPackages() const
// swallowed now. We should change this eventually.
// Output all the package option stuff we have been asked to do.
map<string, string>::const_iterator it =
map<string, string>::const_iterator it =
params_.documentClass().packageOptions().begin();
map<string, string>::const_iterator en =
map<string, string>::const_iterator en =
params_.documentClass().packageOptions().end();
for (; it != en; ++it)
if (mustProvide(it->first))
packages << "\\PassOptionsToPackage{" << it->second << "}{"
<< it->first << "}\n";
packages << "\\PassOptionsToPackage{" << it->second << "}"
<< "{" << it->first << "}\n";
// These are all the 'simple' includes. i.e
// packages which we just \usepackage{package}

View File

@ -635,7 +635,7 @@ TextClass::ReturnValues TextClass::read(Lexer & lexrc, ReadType rt)
requires_.insert(req.begin(), req.end());
break;
}
case TC_PKGOPTS : {
lexrc.next();
string const pkg = lexrc.getString();