Commit d88b89e5 by Zack Weinberg Committed by Zack Weinberg

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
parent e38992e8
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;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment