mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-09 00:38:05 +11:00
3171b03335
If a line has a char below 0x20, we consider the line ended, we stop the EMIT loop for this line and spit our NL. This makes LIST stop wasting rows in environments with a tight screen.
10 lines
194 B
Plaintext
10 lines
194 B
Plaintext
: LIST
|
|
BLK@
|
|
16 0 DO
|
|
I 1+ DUP 10 < IF SPC THEN . SPC
|
|
64 I * BLK( + DUP 64 + SWAP DO
|
|
I C@ DUP 0x1f > IF EMIT ELSE LEAVE THEN
|
|
LOOP
|
|
NL
|
|
LOOP ;
|