Fixed cursor position bug with cursor left at end of wrapped line

This commit is contained in:
Bobbi Webber-Manners 2020-08-02 17:25:15 -04:00
parent c4d68b9588
commit f30e82362f
2 changed files with 3 additions and 2 deletions

View File

@ -5,6 +5,7 @@
// Note: Use my fork of cc65 to get a flashing cursor!!
// TODO: Delete left EOL erases wrong line on screen
// TODO: Minor bug - can delete too many chars from status line
// TODO: Doesn't check for error cases when calling gap buffer functions
// TODO: Should be smarter about redrawing when updating selection!!!
@ -674,7 +675,7 @@ void update_after_delete_char(void) {
if (col > 0)
--col;
else {
col = 0;
col = 79;
if (row > 0)
--row;
else {

View File

@ -4,7 +4,7 @@
// Bobbi June 2020
/////////////////////////////////////////////////////////////////
#define PROGNAME "emai//er v0.93"
#define PROGNAME "emai//er v0.94"
// Configuration params from POP65.CFG
char cfg_server[40]; // IP of POP3 server