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]

FYI: add missing _()


I am checking this in.

While reading through breakpoint.c, I noticed a missing _() call.

Tom

2010-09-08  Tom Tromey  <tromey@redhat.com>

	* breakpoint.c (create_breakpoint): Add missing _().

Index: breakpoint.c
===================================================================
RCS file: /cvs/src/src/gdb/breakpoint.c,v
retrieving revision 1.513
diff -u -r1.513 breakpoint.c
--- breakpoint.c	4 Sep 2010 15:30:05 -0000	1.513
+++ breakpoint.c	8 Sep 2010 18:02:19 -0000
@@ -7545,7 +7545,7 @@
           /* If pending breakpoint support is auto query and the user
 	     selects no, then simply return the error code.  */
 	  if (pending_break_support == AUTO_BOOLEAN_AUTO
-	      && !nquery ("Make breakpoint pending on future shared library load? "))
+	      && !nquery (_("Make breakpoint pending on future shared library load? ")))
 	    return 0;
 
 	  /* At this point, either the user was queried about setting


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