Ignore dot files in the styles directory.
authorScott Moynes <smoynes@nexus.carleton.ca>
Sat, 26 Oct 2002 15:31:33 +0000 (15:31 +0000)
committerScott Moynes <smoynes@nexus.carleton.ca>
Sat, 26 Oct 2002 15:31:33 +0000 (15:31 +0000)
src/Screen.cc

index 165a4a9..eb93320 100644 (file)
@@ -2314,7 +2314,8 @@ bool BScreen::parseMenuFile(FILE *file, Rootmenu *menu) {
       for (; it != end; ++it) {
         const string& fname = *it;
 
-        if (fname[fname.size()-1] == '~')
+        //ignore backups and dot files
+        if (fname[fname.size()-1] == '~' || fname[0] == '.')
           continue;
 
         string style = stylesdir;