cppinit.c (no_arg, [...]): Change from char[] to macros.

* cppinit.c (no_arg, no_ass, no_dir, no_fil, no_mac, no_pth):
	Change from char[] to macros.

From-SVN: r32486
This commit is contained in:
Kaveh R. Ghazi 2000-03-12 04:33:26 +00:00 committed by Kaveh Ghazi
parent b1b74f9370
commit 5e2ee78da9
2 changed files with 14 additions and 6 deletions

View File

@ -1,3 +1,8 @@
2000-03-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* cppinit.c (no_arg, no_ass, no_dir, no_fil, no_mac, no_pth):
Change from char[] to macros.
2000-03-12 Neil Booth <NeilB@earthling.net>
* cppinit.c (cpp_start_read): Update indirect function

View File

@ -1080,12 +1080,15 @@ struct cl_option
enum opt_code opt_code;
};
static const char no_arg[] = N_("Argument missing after `%s' option");
static const char no_ass[] = N_("Assertion missing after `%s' option");
static const char no_dir[] = N_("Directory name missing after `%s' option");
static const char no_fil[] = N_("File name missing after `%s' option");
static const char no_mac[] = N_("Macro name missing after `%s' option");
static const char no_pth[] = N_("Path name missing after `%s' option");
/* Irix6 "cc -n32" and OSF4 cc have problems with char foo[] = ("string");
I.e. a const string initializer with parens around it. That is
what N_("string") resolves to, so we make no_* be macros instead. */
#define no_arg N_("Argument missing after `%s' option")
#define no_ass N_("Assertion missing after `%s' option")
#define no_dir N_("Directory name missing after `%s' option")
#define no_fil N_("File name missing after `%s' option")
#define no_mac N_("Macro name missing after `%s' option")
#define no_pth N_("Path name missing after `%s' option")
/* This list must be ASCII sorted. Make enum order above match this. */
#define DEF_OPT(text, msg, code) {text, msg, sizeof(text) - 1, code}