cake
/
p7utils
Archived
1
0
Fork 0

Corrected stupid AUTHOR problem.

This commit is contained in:
Thomas Touhey 2016-12-27 13:43:29 +01:00
parent d2ff359334
commit 45558c976b
3 changed files with 6 additions and 6 deletions

View File

@ -20,7 +20,7 @@
/* Version message */
static const char version_message[] =
"P7 v" QUOTE(VERSION) " (licensed under " QUOTE(LICENSE) ")\n"
"Made by " QUOTE(AUTHOR) " <" QUOTE(AUTHOR_MAIL) ">.\n"
"Made by " QUOTE(AUTHOR) ".\n"
"\n"
"This is free software; see the source for copying conditions.\n"
"There is NO warranty; not even for MERCHANTABILITY or\n"
@ -54,7 +54,7 @@ static const char help_main[] =
" when --no-exit was used last time p7 was called).\n"
"\n"
"Type \"p7 <subcommand> --help\" for some help about the subcommand.\n"
"Report bugs to " QUOTE(AUTHOR) " <" QUOTE(AUTHOR_MAIL) ">.";
"Report bugs to " QUOTE(AUTHOR) ".";
/* Sending help message */
static const char help_send[] =

View File

@ -19,7 +19,7 @@
/* The version message - that's when the President comes in */
const char version_message[] =
"P7OS v" QUOTE(VERSION) " (licensed under " QUOTE(LICENSE) ")\n"
"Made by " QUOTE(AUTHOR) " <" QUOTE(AUTHOR_MAIL) ">.\n"
"Made by " QUOTE(AUTHOR) ".\n"
"\n"
"This is free software; see the source for copying conditions.\n"
"There is NO warranty; not even for MERCHANTABILITY or\n"
@ -44,7 +44,7 @@ const char help_main[] =
" By default, will use the first appropriate device found.\n"
"\n"
"Type \"p7os <subcommand> --help\" for some help about a subcommand.\n"
"Report bugs to " QUOTE(AUTHOR) " <" QUOTE(AUTHOR_MAIL) ">.";
"Report bugs to " QUOTE(AUTHOR) ".";
/* Help message for prepare subcommand */
const char help_prepare[] =

View File

@ -17,7 +17,7 @@
/* Version message */
static const char version_message[] =
"P7SCREEN v" QUOTE(VERSION) " (licensed under " QUOTE(LICENSE) ")\n"
"Made by " QUOTE(AUTHOR) " <" QUOTE(AUTHOR_MAIL) ">.\n"
"Made by " QUOTE(AUTHOR) ".\n"
"\n"
"This is free software; see the source for copying conditions.\n"
"There is NO warranty; not even for MERCHANTABILITY or\n"
@ -38,7 +38,7 @@ static const char help_main[] =
" -z ZOOM Change the zoom (1 to 16)\n"
" By default, the zoom will be " QUOTE(DEFAULT_ZOOM) ".\n"
"\n"
"Report bugs to " QUOTE(AUTHOR) " <" QUOTE(AUTHOR_MAIL) ">.";
"Report bugs to " QUOTE(AUTHOR) ".";
/* ************************************************************************** */
/* Main function */