nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit 9ccf85eaa82159f6581cf728d17b82f6e663a685
parent 93fa53c3e8913a081c7f0d3b3419eed2f17ee07c
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Fri, 18 Mar 2022 11:40:03 +0100

tweaks: avoid a function call when two plain assignments will do

Diffstat:
MREADME | 1-
Msrc/text.c | 3++-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/README b/README @@ -119,4 +119,3 @@ Bug Reports (you will need an account to be able to do so), or send an email to the nano-devel list (no need to subscribe, but mention it if you want to be CC'ed on an answer). - diff --git a/src/text.c b/src/text.c @@ -558,7 +558,8 @@ void do_undo(void) * and the nonewlines flag isn't set, do not re-add a newline that * wasn't actually deleted; just position the cursor. */ if ((u->xflags & WAS_BACKSPACE_AT_EOF) && !ISSET(NO_NEWLINES)) { - goto_line_posx(openfile->filebot->lineno, 0); + openfile->current = openfile->filebot; + openfile->current_x = 0; break; } line->data[u->tail_x] = '\0';