nano

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

commit fb38995d366642fff71eade178c3edd137304eb1
parent 2cdb87ee628338d039c05c55816360838e4d8627
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Mon, 10 Sep 2018 15:17:07 -0500

tweaks: adjust some indentation after the previous change

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

diff --git a/src/text.c b/src/text.c @@ -2315,13 +2315,13 @@ void do_justify(bool full_justify) else statusbar(_("Justified paragraph")); - /* Set the desired screen column (always zero, except at EOF). */ - openfile->placewewant = xplustabs(); + /* Set the desired screen column (always zero, except at EOF). */ + openfile->placewewant = xplustabs(); #ifndef NANO_TINY - /* Throw away the entire undo stack, to prevent a crash when - * the user tries to undo something in the justified text. */ - discard_until(NULL, openfile, FALSE); + /* Throw away the entire undo stack, to prevent a crash when + * the user tries to undo something in the justified text. */ + discard_until(NULL, openfile, FALSE); #endif }