summaryrefslogtreecommitdiff
path: root/gdb/infcmd.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/infcmd.c')
-rw-r--r--gdb/infcmd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/infcmd.c b/gdb/infcmd.c
index 9a6bec903ec..58bee1e8ab6 100644
--- a/gdb/infcmd.c
+++ b/gdb/infcmd.c
@@ -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);
}