diff options
author | Zack Weinberg <zack@wolery.cumb.org> | 2000-04-18 21:49:16 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2000-04-18 21:49:16 +0000 |
commit | d88b89e5063f7a693d3f2f7d593510eff110727d (patch) | |
tree | 4990e989fbd8297a9cf6c0e009c518079f11f934 /gcc | |
parent | e38992e8d312b679eb3f4b9973567805a96511cb (diff) | |
download | gcc-d88b89e5063f7a693d3f2f7d593510eff110727d.tar.gz |
cppinit.c (handle_option): Don't run error message through gettext twice.
* cppinit.c (handle_option): Don't run error message through
gettext twice.
From-SVN: r33237
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/cppinit.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8f96af39e41..8a6b3a090e4 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-04-18 Zack Weinberg <zack@wolery.cumb.org> + + * cppinit.c (handle_option): Don't run error message through + gettext twice. + Tue Apr 18 14:16:47 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu> * conflict.c (conflict_graph_add): Pass enum type to htab_find_slot. diff --git a/gcc/cppinit.c b/gcc/cppinit.c index 6feb0609562..d1e7c117b26 100644 --- a/gcc/cppinit.c +++ b/gcc/cppinit.c @@ -1279,7 +1279,7 @@ handle_option (pfile, argc, argv) arg = argv[++i]; if (!arg) { - cpp_fatal (pfile, _(cl_options[opt_index].msg), argv[i - 1]); + cpp_fatal (pfile, cl_options[opt_index].msg, argv[i - 1]); return argc; } } |