From ffeb0f9d4bb38d99b6ae69a17448db9017cf360c Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Sun, 23 Oct 2016 22:00:45 +0200 Subject: [PATCH] tweaks: don't spread a statement over multiple lines unnecessarily --- src/nano.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/nano.c b/src/nano.c index 18980a73..1a4fc434 100644 --- a/src/nano.c +++ b/src/nano.c @@ -797,13 +797,11 @@ void print_opt_full(const char *shortflag void usage(void) { printf(_("Usage: nano [OPTIONS] [[+LINE,COLUMN] FILE]...\n\n")); - printf( #ifdef HAVE_GETOPT_LONG - _("Option\t\tGNU long option\t\tMeaning\n") + printf(_("Option\t\tGNU long option\t\tMeaning\n")); #else - _("Option\t\tMeaning\n") + printf(_("Option\t\tMeaning\n")); #endif - ); print_opt(_("+LINE,COLUMN"), "", /* TRANSLATORS: The next forty or so strings are option descriptions * for the --help output. Try to keep them at most 40 characters. */