mirror of
git://git.sv.gnu.org/nano.git
synced 2025-01-10 11:32:11 +03:00
tweaks: when undoing an addition or redoing a deletion, do not reallocate
Especially when undoing an addition, reallocating the line data is a waste of time, because most likely other text will be added instead. (This also removes a coding error in the redo code for a deletion: it allocated too many bytes for the new line data: twice the amount of the deletion too much.)
This commit is contained in:
parent
7cf08b93ff
commit
4f67f364bc
14
src/text.c
14
src/text.c
@ -534,11 +534,8 @@ void do_undo(void)
|
||||
undidmsg = _("addition");
|
||||
if ((u->xflags & WAS_FINAL_LINE) && !ISSET(NO_NEWLINES))
|
||||
remove_magicline();
|
||||
data = charalloc(strlen(line->data) - strlen(u->strdata) + 1);
|
||||
strncpy(data, line->data, u->head_x);
|
||||
strcpy(&data[u->head_x], &line->data[u->head_x + strlen(u->strdata)]);
|
||||
free(line->data);
|
||||
line->data = data;
|
||||
memmove(line->data + u->head_x, line->data + u->head_x + strlen(u->strdata),
|
||||
strlen(line->data + u->head_x) - strlen(u->strdata) + 1);
|
||||
goto_line_posx(u->head_lineno, u->head_x);
|
||||
break;
|
||||
case ENTER:
|
||||
@ -723,11 +720,8 @@ void do_redo(void)
|
||||
case BACK:
|
||||
case DEL:
|
||||
redidmsg = _("deletion");
|
||||
data = charalloc(strlen(line->data) + strlen(u->strdata) + 1);
|
||||
strncpy(data, line->data, u->head_x);
|
||||
strcpy(&data[u->head_x], &line->data[u->head_x + strlen(u->strdata)]);
|
||||
free(line->data);
|
||||
line->data = data;
|
||||
memmove(line->data + u->head_x, line->data + u->head_x + strlen(u->strdata),
|
||||
strlen(line->data + u->head_x) - strlen(u->strdata) + 1);
|
||||
goto_line_posx(u->head_lineno, u->head_x);
|
||||
break;
|
||||
case JOIN:
|
||||
|
Loading…
Reference in New Issue
Block a user