]> git.lyx.org Git - lyx.git/commitdiff
Whitespace.
authorRichard Heck <rgheck@lyx.org>
Thu, 23 May 2013 13:39:16 +0000 (09:39 -0400)
committerRichard Heck <rgheck@lyx.org>
Thu, 23 May 2013 13:39:16 +0000 (09:39 -0400)
src/LaTeXFeatures.cpp
src/TextClass.cpp

index 88a5d281e9bf8ad60d90c526a4a9f11f0a81b05a..e4f563a456faf5b378792678d1b0b714979bea85 100644 (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}
index 1fcdb2d3728d92063db0f2f371b3319a94fc847c..f6723ec9c2ff3c48fdf33ed91a29f7f2bceba9b2 100644 (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();