tweaks: don't spread a statement over multiple lines unnecessarily
parent
10c9093942
commit
ffeb0f9d4b
|
@ -797,13 +797,11 @@ void print_opt_full(const char *shortflag
|
||||||
void usage(void)
|
void usage(void)
|
||||||
{
|
{
|
||||||
printf(_("Usage: nano [OPTIONS] [[+LINE,COLUMN] FILE]...\n\n"));
|
printf(_("Usage: nano [OPTIONS] [[+LINE,COLUMN] FILE]...\n\n"));
|
||||||
printf(
|
|
||||||
#ifdef HAVE_GETOPT_LONG
|
#ifdef HAVE_GETOPT_LONG
|
||||||
_("Option\t\tGNU long option\t\tMeaning\n")
|
printf(_("Option\t\tGNU long option\t\tMeaning\n"));
|
||||||
#else
|
#else
|
||||||
_("Option\t\tMeaning\n")
|
printf(_("Option\t\tMeaning\n"));
|
||||||
#endif
|
#endif
|
||||||
);
|
|
||||||
print_opt(_("+LINE,COLUMN"), "",
|
print_opt(_("+LINE,COLUMN"), "",
|
||||||
/* TRANSLATORS: The next forty or so strings are option descriptions
|
/* TRANSLATORS: The next forty or so strings are option descriptions
|
||||||
* for the --help output. Try to keep them at most 40 characters. */
|
* for the --help output. Try to keep them at most 40 characters. */
|
||||||
|
|
Loading…
Reference in New Issue