]> git.lyx.org Git - features.git/blobdiff - src/support/FileName.cpp
Whitespace cleanup
[features.git] / src / support / FileName.cpp
index 247cdd4fa2d79060b97741012c855aa12e107010..b8cd5b3c4379d78ab97329d1d886b9af78547e07 100644 (file)
@@ -177,8 +177,8 @@ string const DocFileName::mangledFilename(std::string const & dir) const
        // On windows it is not possible to create files with '<', '>' or '?'
        // in the name.
        static string const keep = "abcdefghijklmnopqrstuvwxyz"
-                                  "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
-                                  "+,-0123456789;=";
+                                  "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
+                                  "+,-0123456789;=";
        string::size_type pos = 0;
        while ((pos = mname.find_first_not_of(keep, pos)) != string::npos)
                mname[pos++] = '_';