From d88b89e5063f7a693d3f2f7d593510eff110727d Mon Sep 17 00:00:00 2001 From: Zack Weinberg Date: Tue, 18 Apr 2000 21:49:16 +0000 Subject: [PATCH] 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 --- gcc/ChangeLog | 5 +++++ gcc/cppinit.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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 + + * cppinit.c (handle_option): Don't run error message through + gettext twice. + Tue Apr 18 14:16:47 2000 Richard Kenner * 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; } }