More PDP-11 documentation additions
This commit is contained in:
parent
f1bb1487e4
commit
b15c8cf51e
6 changed files with 23 additions and 10 deletions
|
|
@ -555,7 +555,10 @@ class Str {
|
|||
{
|
||||
var s;
|
||||
if (b != Str.ASCII.CR && b != Str.ASCII.LF) {
|
||||
s = '<' + Str.aASCIICodes[b] + '>';
|
||||
s = Str.aASCIICodes[b];
|
||||
}
|
||||
if (s) {
|
||||
s = '<' + s + '>';
|
||||
} else {
|
||||
s = String.fromCharCode(b);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue