More MACRO-10 fixes

This commit is contained in:
Jeff 2017-03-13 17:44:01 -07:00 committed by Jeff Parsons
commit e1f37c8275
4 changed files with 141 additions and 132 deletions

View file

@ -689,9 +689,13 @@ class Debugger extends Component {
value = Str.parseInt(sValue, this.nBase);
}
}
if (value == null && !fQuiet) this.println("invalid " + (sName? sName : "value") + ": " + sValue);
if (value == null && !fQuiet) {
this.println("invalid " + (sName? sName : "value") + ": " + sValue);
}
} else {
if (!fQuiet) this.println("missing " + (sName || "value"));
if (!fQuiet) {
this.println("missing " + (sName || "value"));
}
}
return value;
}