We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f213f2 commit b42fe55Copy full SHA for b42fe55
src/main/java/org/scijava/script/ScriptREPL.java
@@ -155,7 +155,7 @@ public boolean evaluate(final String line) {
155
else if (tLine.equals(":vars")) vars();
156
else if (tLine.equals(":langs")) langs();
157
else if (tLine.startsWith(":lang ")) lang(line.substring(6).trim());
158
- else if (line.trim().equals(":quit")) return false;
+ else if (tLine.equals(":quit")) return false;
159
else {
160
// ensure that a script language is active
161
if (interpreter == null) return true;
0 commit comments