https://gitlab.synchro.net/main/sbbs/-/issues/775#note_5736
Hmm, this is already in function exec_xtrn
```
function exec_xtrn(prog)
{
if(options.clear_screen_on_exec)
console.clear();
if(options.eval_before_exec)
eval(options.eval_before_exec);
load('fonts.js', 'xtrn:' + prog.code);
bbs.exec_xtrn(prog.code);
console.attributes = 0;
console.attributes = LIGHTGRAY;
load('fonts.js', 'default');
if(options.eval_after_exec)
eval(options.eval_after_exec);
if(prog.settings&XTRN_PAUSE)
console.pause();
else
console.line_counter=0;
}
```
I'll put some debugging code in and see what's going on.
Hmm...seems I moved ctrl/fonts.ini out the way for some reason, maybe because I hated the default font and didn't have time to figure out how to change it to something more normal.
--- SBBSecho 3.20-Linux
* Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)