From 976847c0166d6b680522fbfd257d045ced72b202 Mon Sep 17 00:00:00 2001 From: Robert Siemborski Date: Thu, 6 Jul 2000 03:43:05 +0000 Subject: [PATCH] moved '\n' outside of if at bottom of help_init git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@76 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- nano.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nano.c b/nano.c index 9dfab74e..67bf59e6 100644 --- a/nano.c +++ b/nano.c @@ -1501,9 +1501,10 @@ void help_init(void) sofar += snprintf(&buf[sofar], BUFSIZ - sofar, " "); if (main_list[i].help != NULL) - snprintf(&buf[sofar], BUFSIZ - sofar, "%s\n", main_list[i].help); + snprintf(&buf[sofar], BUFSIZ - sofar, "%s", main_list[i].help); strcat(help_text, buf); + strcat(help_text, "\n"); } }