https://gitlab.synchro.net/main/sbbs/-/issues/894#note_6906
This work-around shouldn't be necessary anymore:
```
/* Clear the text to the end of the line on the screen. For PETSCII,
it seems we have to take extra care to go only to the end of the line;
console.cleartoeol() is causing a formatting issue with PETSCII. */
if (console.term_supports(USER_PETSCII))
{
var prompt_text_len = console.strlen(prompt_str);
var len_to_clear = console.screen_columns - prompt_text_len + 6;
printf("%" + len_to_clear + "s", "");
console.gotoxy(prompt_text_len-6, prompt_row);
}
else
console.cleartoeol(); // With PETSCII, this is causing a formatting issue
```
--- SBBSecho 3.24-Linux
* Origin: Vertrauen - [vert/cvs/bbs].synchro.net (1:103/705)