]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
2008-10-06 Michael Snyder <msnyder@vmware.com>
authorMichael Snyder <msnyder@vmware.com>
Tue, 7 Oct 2008 00:01:46 +0000 (00:01 +0000)
committerMichael Snyder <msnyder@vmware.com>
Tue, 7 Oct 2008 00:01:46 +0000 (00:01 +0000)
* infcmd.c (finish_command): Use i18n macros.

gdb/ChangeLog
gdb/infcmd.c

index f5e4165e310b1f8b663389d004ee54d55b2577c5..484c385b3a7d55f931a4a487b4051e865cb6b71f 100644 (file)
@@ -1,5 +1,6 @@
 2008-10-06  Michael Snyder  <msnyder@vmware.com>
 
+       * infcmd.c (finish_command): Use i18n macros.
        * infcmd.c: Minor function reordering.
        * infrun.c (step_into_function): Rename to stepped_into_function.
        Split into two versions (normal (forward), and reverse).
index 9a6bec903ec0d18b84bb5b1007bfb4d2566625e3..58bee1e8ab6afd6689a16496de05648ad21ec509 100644 (file)
@@ -1381,7 +1381,7 @@ finish_backward (struct symbol *function, struct thread_info *tp)
   if (find_pc_partial_function (get_frame_pc (get_current_frame ()),
                                NULL, &func_addr, NULL) == 0)
     internal_error (__FILE__, __LINE__,
-                   "Finish: couldn't find function.");
+                   _("Finish: couldn't find function."));
 
   sal = find_pc_line (func_addr, 0);
 
@@ -1483,9 +1483,9 @@ finish_command (char *arg, int from_tty)
   if (from_tty)
     {
       if (target_get_execution_direction () == EXEC_REVERSE)
-       printf_filtered ("Run back to call of ");
+       printf_filtered (_("Run back to call of "));
       else
-       printf_filtered ("Run till exit from ");
+       printf_filtered (_("Run till exit from "));
 
       print_stack_frame (get_selected_frame (NULL), 1, LOCATION);
     }