• R/O
  • HTTP
  • SSH
  • HTTPS

コミット

タグ
未設定

よく使われているワード(クリックで追加)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

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.

変更サマリ

差分

--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,6 @@
11 2008-10-06 Michael Snyder <msnyder@vmware.com>
22
3+ * infcmd.c (finish_command): Use i18n macros.
34 * infcmd.c: Minor function reordering.
45 * infrun.c (step_into_function): Rename to stepped_into_function.
56 Split into two versions (normal (forward), and reverse).
--- a/gdb/infcmd.c
+++ b/gdb/infcmd.c
@@ -1429,7 +1429,7 @@ finish_backward (struct symbol *function)
14291429 if (find_pc_partial_function (get_frame_pc (get_current_frame ()),
14301430 NULL, &func_addr, NULL) == 0)
14311431 internal_error (__FILE__, __LINE__,
1432- "Finish: couldn't find function.");
1432+ _("Finish: couldn't find function."));
14331433
14341434 sal = find_pc_line (func_addr, 0);
14351435
@@ -1528,9 +1528,9 @@ finish_command (char *arg, int from_tty)
15281528 if (from_tty)
15291529 {
15301530 if (target_get_execution_direction () == EXEC_REVERSE)
1531- printf_filtered ("Run back to call of ");
1531+ printf_filtered (_("Run back to call of "));
15321532 else
1533- printf_filtered ("Run till exit from ");
1533+ printf_filtered (_("Run till exit from "));
15341534
15351535 print_stack_frame (get_selected_frame (NULL), 1, LOCATION);
15361536 }