More PDP-11 documentation additions

This commit is contained in:
Jeff Parsons 2016-12-22 22:58:35 -08:00 committed by Jeff Parsons
commit b15c8cf51e
6 changed files with 23 additions and 10 deletions

View file

@ -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);
}