get external editor working, also only build preproc when new work dir

This commit is contained in:
benfry
2005-02-04 03:36:06 +00:00
parent 05816e9ac3
commit d8dccacbbd
5 changed files with 25 additions and 15 deletions

View File

@@ -188,7 +188,10 @@ public class PdeSketch {
// remove any entries that didn't load properly
int index = 0;
while (index < codeCount) {
if (code[index].program == null) {
//System.out.println("code is " + code);
//System.out.println(index + " " + code[index]);
if ((code[index] == null) ||
(code[index].program == null)) {
//hide(index); // although will this file be hidable?
for (int i = index+1; i < codeCount; i++) {
code[i-1] = code[i];