.p/.pas are text files

This commit is contained in:
Kelvin Sherlock 2013-02-26 18:32:55 -05:00
parent df66ea44b3
commit 8cdede6104

View File

@ -221,6 +221,10 @@ namespace OS
break;
case 'p':
if (ext == "p") // pascal
return true;
if (ext == "pas") // pascal
return true;
if (ext == "pii") // pascal
return true;
break;
@ -266,8 +270,11 @@ namespace OS
switch(c)
{
case 'o':
if (ext == "o")
return true;
if (ext == "obj")
return true;
break;
}