From 206d89b73991ef74f673e7f16619fb0d271f1f84 Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Fri, 23 Mar 2018 11:31:08 +0100 Subject: [PATCH] tweaks: revert commit c88a2fd9 -- the extra variable is needed This variable will be modified by go_forward_chunks(), but the value of openfile->current itself should be maintained. --- src/search.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/search.c b/src/search.c index cf7a19ef..02382b99 100644 --- a/src/search.c +++ b/src/search.c @@ -840,10 +840,11 @@ void do_gotolinecolumn(ssize_t line, ssize_t column, bool use_answer, #ifndef NANO_TINY if (ISSET(SOFTWRAP)) { + filestruct *currentline = openfile->current; size_t leftedge = leftedge_for(xplustabs(), openfile->current); rows_from_tail = (editwinrows / 2) - go_forward_chunks( - editwinrows / 2, &openfile->current, &leftedge); + editwinrows / 2, ¤tline, &leftedge); } else #endif rows_from_tail = openfile->filebot->lineno -