diff --git a/ChangeLog b/ChangeLog index 57911f57..16a83841 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2014-06-17 Mark Majeres + * src/text.c (do_undo, do_redo): After an undo or redo, update the + 'placewewant' (the desired horizontal position of the cursor). + 2014-06-17 Benno Schulenberg * src/text.c (do_undo, do_redo): Remove obsolete boolean variable. diff --git a/src/text.c b/src/text.c index 404df9e6..e8a97d29 100644 --- a/src/text.c +++ b/src/text.c @@ -558,6 +558,7 @@ void do_undo(void) renumber(f); openfile->current_undo = openfile->current_undo->next; openfile->last_action = OTHER; + openfile->placewewant = xplustabs(); set_modified(); } @@ -611,7 +612,6 @@ void do_redo(void) free(f->data); f->data = data; openfile->current_x = u->begin; - openfile->placewewant = xplustabs(); goto_line_posx(u->lineno, u->begin); break; case ENTER: @@ -674,6 +674,7 @@ void do_redo(void) openfile->current_undo = u; openfile->last_action = OTHER; + openfile->placewewant = xplustabs(); set_modified(); } #endif /* !NANO_TINY */