nano

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

commit fb073ec88d9fe2fa73cb4d6220f52904c74e2132
parent c09e96f294033a0de6bd345ca974098870eda817
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Tue, 28 Jan 2020 09:35:45 +0100

display: ensure the guiding stripe can be shown when not softwrapping

This fixes https://savannah.gnu.org/bugs/?57683.

Bug existed since commit 0b54785f from yesterday.

Diffstat:
Msrc/winio.c | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/winio.c b/src/winio.c @@ -2763,6 +2763,8 @@ int update_line(linestruct *line, size_t index) #ifndef NANO_TINY if (ISSET(SOFTWRAP)) return update_softwrapped_line(line); + + sequel_column = 0; #endif row = line->lineno - openfile->edittop->lineno;