Subj : src/sbbs3/listfile.cpp To : Git commit to main/sbbs/master From : Rob Swindell (on Debian Linux) Date : Fri May 05 2023 07:55 pm https://gitlab.synchro.net/main/sbbs/-/commit/957a1d7ff51d93b5ded4a267 Modified Files: src/sbbs3/listfile.cpp Log Message: Use '[' Ctrl-A code to move cursor to first column, not a bare '\r' A bare '\r' doesn't move the cursor to the first column in PETSCII terminals. The '[' Ctrl-A code moves the cursor to the first column with multiple cursor-left sequences, if necessary. Ideally this sequence would be part of the text.dat string instead of hard-coded here. This fixes issue #561 .