GNU Binutils with patches for OS216
リビジョン | 7cd37c5245ae05388ad21e03648b950269ea19a4 (tree) |
---|---|
日時 | 2008-10-07 09:02:00 |
作者 | Michael Snyder <msnyder@vmwa...> |
コミッター | Michael Snyder |
2008-10-06 Michael Snyder <msnyder@vmware.com>
* infcmd.c (finish_command): Use i18n macros.
@@ -1,5 +1,6 @@ | ||
1 | 1 | 2008-10-06 Michael Snyder <msnyder@vmware.com> |
2 | 2 | |
3 | + * infcmd.c (finish_command): Use i18n macros. | |
3 | 4 | * infcmd.c: Minor function reordering. |
4 | 5 | * infrun.c (step_into_function): Rename to stepped_into_function. |
5 | 6 | Split into two versions (normal (forward), and reverse). |
@@ -1429,7 +1429,7 @@ finish_backward (struct symbol *function) | ||
1429 | 1429 | if (find_pc_partial_function (get_frame_pc (get_current_frame ()), |
1430 | 1430 | NULL, &func_addr, NULL) == 0) |
1431 | 1431 | internal_error (__FILE__, __LINE__, |
1432 | - "Finish: couldn't find function."); | |
1432 | + _("Finish: couldn't find function.")); | |
1433 | 1433 | |
1434 | 1434 | sal = find_pc_line (func_addr, 0); |
1435 | 1435 |
@@ -1528,9 +1528,9 @@ finish_command (char *arg, int from_tty) | ||
1528 | 1528 | if (from_tty) |
1529 | 1529 | { |
1530 | 1530 | if (target_get_execution_direction () == EXEC_REVERSE) |
1531 | - printf_filtered ("Run back to call of "); | |
1531 | + printf_filtered (_("Run back to call of ")); | |
1532 | 1532 | else |
1533 | - printf_filtered ("Run till exit from "); | |
1533 | + printf_filtered (_("Run till exit from ")); | |
1534 | 1534 | |
1535 | 1535 | print_stack_frame (get_selected_frame (NULL), 1, LOCATION); |
1536 | 1536 | } |