This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[OBV] Fix New ARI warning Sat May 8 01:55:15 UTC 2010



> -----Message d'origine-----
> De?: gdb-patches-owner@sourceware.org [mailto:gdb-patches-
> owner@sourceware.org] De la part de GDB Administrator
> Envoyé?: Saturday, May 08, 2010 3:55 AM
> À?: gdb-patches@sourceware.org
> Objet?: New ARI warning Sat May 8 01:55:15 UTC 2010
> 
> 1546a1547
> > gdb/valops.c:2448: gettext: _ markup: All messages should be marked
> up with _.
> gdb/valops.c:2448:    error ("No symbol \"%s\" in current context.",
> name);

  Fix checked in under obvious rule.

Pierre


2010-05-08  Pierre Muller  <muller@ics.u-strasbg.fr>

        * valops.c (find_overload_match): Add missing i18n markup.

Index: valops.c
===================================================================
RCS file: /cvs/src/src/gdb/valops.c,v
retrieving revision 1.242
diff -u -p -r1.242 valops.c
--- valops.c    7 May 2010 18:49:26 -0000       1.242
+++ valops.c    8 May 2010 09:25:42 -0000
@@ -2445,7 +2445,7 @@ find_overload_match (struct type **arg_t

   /* Did we find a match ?  */
   if (oload_champ == -1)
-    error ("No symbol \"%s\" in current context.", name);
+    error (_("No symbol \"%s\" in current context."), name);

   /* Check how bad the best match is.  */
   match_quality =


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]