nano

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

commit ada78dc89d812a44e4b204f4303c88a7b3553750
parent c6f367268bc8ae4d6f5d420231aa46d0c88ac57c
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Mon,  8 Jan 2018 19:08:17 +0100

build: fix compilation with --enable-tiny --enable-justify

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

diff --git a/src/text.c b/src/text.c @@ -2422,9 +2422,11 @@ void do_justify(bool full_justify) if (first_par_line != NULL) last_par_line = openfile->current; +#ifndef NANO_TINY /* Let a justification cancel a soft mark. */ if (openfile->mark && openfile->kind_of_mark == SOFTMARK) openfile->mark = NULL; +#endif edit_refresh();