nano

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

commit e2d3ee23648b5ba9b6d632fb5e8200d927b22e5e
parent beae2da10d8b2f6fc3546004d4c2c61cfef27854
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Thu, 27 Jul 2017 02:23:47 -0500

tweaks: replace a misplaced tab with a space

Diffstat:
Msrc/text.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/text.c b/src/text.c @@ -3400,7 +3400,7 @@ void do_formatter(void) formatargs[0] = strtok(openfile->syntax->formatter, " "); while ((ptr = strtok(NULL, " ")) != NULL) { arglen++; - formatargs = (char **)nrealloc(formatargs, arglen * sizeof(char *)); + formatargs = (char **)nrealloc(formatargs, arglen * sizeof(char *)); formatargs[arglen - 3] = ptr; } formatargs[arglen - 1] = NULL;