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:
Zack Weinberg 2000-04-18 21:49:16 +00:00 committed by Zack Weinberg
parent e38992e8d3
commit d88b89e506
2 changed files with 6 additions and 1 deletions

View file

@ -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.

View file

@ -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;
}
}