diff options
author | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-25 11:13:38 +0000 |
---|---|---|
committer | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-25 11:13:38 +0000 |
commit | 7668b48e6218ea29e854abd276f174b69f117165 (patch) | |
tree | 67160e01dfbb1e6dc24efedebabe3742b5e5cbe4 /gcc/java/jvspec.c | |
parent | 0e06d11ae87a475871e98251ccd7341cc60f75ea (diff) | |
download | gcc-7668b48e6218ea29e854abd276f174b69f117165.tar.gz |
* config/rs6000/darwin.h (SUBTARGET_OVERRIDE_OPTIONS): Use %qs
instead of `%s' in diagnostic.
cp:
* g++spec.c, lex.c: Avoid ` as left quote in diagnostics.
fortran:
* f95-lang.c, gfortranspec.c, trans-decl.c: Avoid ` as left quote
in diagnostics.
java:
* gjavah.c, jcf-dump.c, jv-scan.c, jvspec.c: Avoid ` as left quote
in diagnostics.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@91282 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/java/jvspec.c')
-rw-r--r-- | gcc/java/jvspec.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/java/jvspec.c b/gcc/java/jvspec.c index a3e8c6fd317..479916b7d65 100644 --- a/gcc/java/jvspec.c +++ b/gcc/java/jvspec.c @@ -414,13 +414,13 @@ lang_specific_driver (int *in_argc, const char *const **in_argv, } if (quote) - fatal ("argument to `%s' missing\n", quote); + fatal ("argument to '%s' missing\n", quote); if (saw_D && ! main_class_name) - fatal ("can't specify `-D' without `--main'\n"); + fatal ("can't specify '-D' without '--main'\n"); if (main_class_name && ! verify_class_name (main_class_name)) - fatal ("`%s' is not a valid class name", main_class_name); + fatal ("'%s' is not a valid class name", main_class_name); num_args = argc + added; if (saw_resource) @@ -531,7 +531,7 @@ lang_specific_driver (int *in_argc, const char *const **in_argv, if (strncmp (argv[i], "-fmain=", 7) == 0) { if (! will_link) - fatal ("cannot specify `main' class when not linking"); + fatal ("cannot specify 'main' class when not linking"); --j; continue; } |