build: exclude excessive version information from the tiny version
The tiny version is about being tiny. Copyright information and website links are not essential.master
parent
3f938e29b6
commit
d6c194265f
|
@ -658,10 +658,12 @@ void version(void)
|
||||||
#else
|
#else
|
||||||
printf(_(" GNU nano, version %s\n"), VERSION);
|
printf(_(" GNU nano, version %s\n"), VERSION);
|
||||||
#endif
|
#endif
|
||||||
|
#ifndef NANO_TINY
|
||||||
printf(" (C) 1999-2011, 2013-2020 Free Software Foundation, Inc.\n");
|
printf(" (C) 1999-2011, 2013-2020 Free Software Foundation, Inc.\n");
|
||||||
printf(_(" (C) 2014-%s the contributors to nano\n"), "2020");
|
printf(_(" (C) 2014-%s the contributors to nano\n"), "2020");
|
||||||
printf(_(" Email: nano@nano-editor.org Web: https://nano-editor.org/"));
|
printf(_(" Email: nano@nano-editor.org Web: https://nano-editor.org/\n"));
|
||||||
printf(_("\n Compiled options:"));
|
#endif
|
||||||
|
printf(_(" Compiled options:"));
|
||||||
|
|
||||||
#ifdef NANO_TINY
|
#ifdef NANO_TINY
|
||||||
printf(" --enable-tiny");
|
printf(" --enable-tiny");
|
||||||
|
|
Loading…
Reference in New Issue