aboutsummaryrefslogtreecommitdiff
path: root/gcc/java/lex.c
diff options
context:
space:
mode:
authorRanjit Mathew <rmathew@hotmail.com>2004-10-15 18:43:10 +0000
committerRanjit Mathew <rmathew@gcc.gnu.org>2004-10-15 18:43:10 +0000
commita1402da35c57aa1c074bfc50b20a2a3135ff2987 (patch)
tree2a09c6df4e237628631d8886fb56b90f7e8897d8 /gcc/java/lex.c
parente68a07e8d547b03b769527365a40721d4d9298c6 (diff)
downloadgcc-a1402da35c57aa1c074bfc50b20a2a3135ff2987.zip
gcc-a1402da35c57aa1c074bfc50b20a2a3135ff2987.tar.gz
gcc-a1402da35c57aa1c074bfc50b20a2a3135ff2987.tar.bz2
parse.y (parse_warning_context): Remove ATTRIBUTE_PRINTF_2 and rename parameter 'msg' to 'msgid' in function...
* parse.y (parse_warning_context): Remove ATTRIBUTE_PRINTF_2 and rename parameter 'msg' to 'msgid' in function declaration. (issue_warning_error_from_context): Likewise. (yyerror): Rename parameter 'msg' to 'msgid'. (all over): Use new quoting style for diagnostics. * check-init.c: Use %<, %> and %q for quoting in diagnostics, if possible, else convert `foo' to 'foo'. * class.c: Likewise. * decl.c: Likewise. * expr.c: Likewise. * jcf-io.c: Likewise. * jcf-parse.c: Likewise. * lang.c: Likewise. * lex.c: Likewise. * parse.h: Likewise. From-SVN: r89110
Diffstat (limited to 'gcc/java/lex.c')
-rw-r--r--gcc/java/lex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/java/lex.c b/gcc/java/lex.c
index 94e37b0..54df7ba 100644
--- a/gcc/java/lex.c
+++ b/gcc/java/lex.c
@@ -253,7 +253,7 @@ java_new_lexer (FILE *finput, const char *encoding)
}
if (enc_error)
- fatal_error ("unknown encoding: `%s'\nThis might mean that your locale's encoding is not supported\nby your system's iconv(3) implementation. If you aren't trying\nto use a particular encoding for your input file, try the\n`--encoding=UTF-8' option", encoding);
+ fatal_error ("unknown encoding: %qs\nThis might mean that your locale's encoding is not supported\nby your system's iconv(3) implementation. If you aren't trying\nto use a particular encoding for your input file, try the\n%<--encoding=UTF-8%> option", encoding);
return lex;
}