OSDN Git Service

* cppinit.c (handle_option): Don't run error message through
authorzack <zack@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 18 Apr 2000 21:49:16 +0000 (21:49 +0000)
committerzack <zack@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 18 Apr 2000 21:49:16 +0000 (21:49 +0000)
gettext twice.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@33237 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/cppinit.c

index 8f96af3..8a6b3a0 100644 (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.
index 6feb060..d1e7c11 100644 (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;
                }
            }