From: Jim Meyering Date: Sat, 1 Dec 2001 17:31:09 +0000 (+0000) Subject: Rename just-added macros. Here are the new names: X-Git-Tag: TEXTUTILS-2_0_18~5 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=52f3031b240b7eed511acbe74067b97f8c018db2;p=thirdparty%2Fcoreutils.git Rename just-added macros. Here are the new names: HELP_OPTION_DESCRIPTION VERSION_OPTION_DESCRIPTION --- diff --git a/src/sys2.h b/src/sys2.h index 2fa19d3bb3..df7ea2405a 100644 --- a/src/sys2.h +++ b/src/sys2.h @@ -404,10 +404,10 @@ enum usage (EXIT_SUCCESS); \ break; -#define EMIT_HELP_DESCRIPTION(Stream) \ - fputs (_(" --help display this help and exit\n"), Stream) -#define EMIT_VERSION_DESCRIPTION(Stream) \ - fputs (_(" --version output version information and exit\n"), Stream) +#define HELP_OPTION_DESCRIPTION \ + _(" --help display this help and exit\n") +#define VERSION_OPTION_DESCRIPTION \ + _(" --version output version information and exit\n") #include "closeout.h" #include "version-etc.h"