Skip to content

Commit

Permalink
startswith abort
Browse files Browse the repository at this point in the history
  • Loading branch information
oeway committed Apr 8, 2024
1 parent be27d72 commit 0ed7662
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/ij/macro/Interpreter.java
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ final void doStatement() {
inPrint = true;
String s = getString();
inPrint = false;
if (s!=null && s.length()>0 && !s.equals("NaN") && !s.equals("[aborted]"))
if (s!=null && s.length()>0 && !s.equals("NaN") && !s.startsWith("[aborted]"))
log(s);
return;
case ARRAY_FUNCTION: func.getArrayFunction(pgm.table[tokenAddress].type); break;
Expand Down

0 comments on commit 0ed7662

Please sign in to comment.