1
0
forked from GitHub/gf-core

*** empty log message ***

This commit is contained in:
janna
2004-12-22 14:37:46 +00:00
parent bf022485b3
commit 49e901ec65

View File

@@ -521,16 +521,17 @@ public class GFEditor2 extends JFrame implements ActionListener, CaretListener,
if (debug) System.out.println("1 "+result);
}
appendMarked(outputString, -1,-1);
while ((result.indexOf("newcat")==-1)&&(result.indexOf("<lin ")==-1)){
while ((result!=null)&&(result.indexOf("newcat")==-1)&&(result.indexOf("<lin ")==-1)){
result = fromProc.readLine();
if (debug) System.out.println("1 "+result);
}
if (result.indexOf("<lin ")==-1)
if ((result!=null)&&(result.indexOf("<lin ")==-1))
formNewMenu();
if (!finished) {
while ((result.length()==0)||(result.indexOf("<lin ")==-1)) {
while ((result!=null)&&((result.length()==0)||(result.indexOf("<lin ")==-1))) {
result = fromProc.readLine();
if (result!=null){
if (debug) System.out.println("10 "+result);