1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-10-04 17:56:29 +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) {
if(c < 32) return true;
}
for(auto c : file.type) {
if(c < 32) return true;
}
return false;
}),
candidate_files.end());