More MACRO-10 fixes
This commit is contained in:
parent
3e2b825bef
commit
e1f37c8275
4 changed files with 141 additions and 132 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue