1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-08-16 05:27:43 +00:00

Adds a test that file extension also be typeable.

This commit is contained in:
Thomas Harte
2017-09-16 19:10:17 -04:00
parent 98adb01721
commit e071123f90

View File

@@ -64,6 +64,9 @@ static void InspectCatalogue(
for(auto c : file.name) { for(auto c : file.name) {
if(c < 32) return true; if(c < 32) return true;
} }
for(auto c : file.type) {
if(c < 32) return true;
}
return false; return false;
}), }),
candidate_files.end()); candidate_files.end());