Index: src/OFStdIOStream.m ================================================================== --- src/OFStdIOStream.m +++ src/OFStdIOStream.m @@ -643,11 +643,14 @@ return; #ifdef OF_MSDOS gotoxy(column + 1, wherey()); #else - [self writeFormat: @"\033[%uG", column + 1]; + if (column == 0) + [self writeString: @"\r"]; + else + [self writeFormat: @"\033[%uG", column + 1]; #endif } - (void)setCursorPosition: (OFPoint)position {