+2008-10-17  Pedro Alves  <pedro@codesourcery.com>
+
+       * infcmd.c (GO_USAGE): Delete.
+       (go_command): Adjust.
+
 2008-10-17  Michael Snyder  <msnyder@vmware.com>
        Target interface for reverse debugging.
        * target.h (enum target_waitkind): 
 
 
 void _initialize_infcmd (void);
 
-#define GO_USAGE   "Usage: go <location>\n"
-
 #define ERROR_NO_INFERIOR \
    if (!target_has_execution) error (_("The program is not being run."));
 
 go_command (char *line_no, int from_tty)
 {
   if (line_no == (char *) NULL || !*line_no)
-    printf_filtered (GO_USAGE);
+    printf_filtered (_("Usage: go <location>\n"));
   else
     {
       tbreak_command (line_no, from_tty);