Commit c88a2fd9 authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

tweaks: elide an unneeded and shadowing variable

No related merge requests found
Showing with 2 additions and 3 deletions
+2 -3
......@@ -840,11 +840,10 @@ void do_gotolinecolumn(ssize_t line, ssize_t column, bool use_answer,
#ifndef NANO_TINY
if (ISSET(SOFTWRAP)) {
filestruct *line = openfile->current;
size_t leftedge = leftedge_for(xplustabs(), openfile->current);
rows_from_tail = (editwinrows / 2) -
go_forward_chunks(editwinrows / 2, &line, &leftedge);
rows_from_tail = (editwinrows / 2) - go_forward_chunks(
editwinrows / 2, &openfile->current, &leftedge);
} else
#endif
rows_from_tail = openfile->filebot->lineno -
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment