https://gitlab.synchro.net/main/sbbs/-/merge_requests/506#note_6882
On the master branch, a direct call to clearscreen() e.g. from JS, for an ANSI terminal user, would not go through outcom() (and thus not hit any FF case):
```
void sbbs_t::clearscreen(int term)
{
clear_hotspots();
if (term & ANSI)
putcom("\x1b[2J\x1b[H"); /* clear screen, home cursor */
else if (term & PETSCII)
outcom(PETSCII_CLEAR);
else
outcom(FF);
row = 0;
column = 0;
lncntr = 0;
}
```
Probably a bug.
--- SBBSecho 3.24-Linux
* Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)