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
This commit is contained in:
parent
e38992e8d3
commit
d88b89e506
2 changed files with 6 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue