2011-01-07 Michael Snyder <msnyder@vmware.com>

* mi/mi-cmd-disas.c (mi_cmd_disassemble): Mark up error message
	for i18n.
	* tui/tui-layout.c (tui_set_layout_for_display_command):
	Split line so that operator goes to beginning of line.
	* tui/tui-winsource.c (tui_horizontal_source_scroll): Move
	assignment out of if statement.
This commit is contained in:
Michael Snyder 2011-01-07 20:24:18 +00:00
parent 0963b4bd45
commit a743e5423c
4 changed files with 18 additions and 8 deletions

View File

@ -1,3 +1,12 @@
2011-01-07 Michael Snyder <msnyder@vmware.com>
* mi/mi-cmd-disas.c (mi_cmd_disassemble): Mark up error message
for i18n.
* tui/tui-layout.c (tui_set_layout_for_display_command):
Split line so that operator goes to beginning of line.
* tui/tui-winsource.c (tui_horizontal_source_scroll): Move
assignment out of if statement.
2011-01-07 Michael Snyder <msnyder@vmware.com> 2011-01-07 Michael Snyder <msnyder@vmware.com>
* ada-lang.c: Comment cleanup, mostly periods and spaces. * ada-lang.c: Comment cleanup, mostly periods and spaces.

View File

@ -128,12 +128,12 @@ mi_cmd_disassemble (char *command, char **argv, int argc)
if (!((line_seen && file_seen && num_seen && !start_seen && !end_seen) if (!((line_seen && file_seen && num_seen && !start_seen && !end_seen)
|| (line_seen && file_seen && !num_seen && !start_seen && !end_seen) || (line_seen && file_seen && !num_seen && !start_seen && !end_seen)
|| (!line_seen && !file_seen && !num_seen && start_seen && end_seen))) || (!line_seen && !file_seen && !num_seen && start_seen && end_seen)))
error ("mi_cmd_disassemble: Usage: ( [-f filename -l linenum [-n " error (_("mi_cmd_disassemble: Usage: ( [-f filename -l linenum [-n "
"howmany]] | [-s startaddr -e endaddr]) [--] mixed_mode."); "howmany]] | [-s startaddr -e endaddr]) [--] mixed_mode."));
if (argc != 1) if (argc != 1)
error ("mi_cmd_disassemble: Usage: [-f filename -l " error (_("mi_cmd_disassemble: Usage: [-f filename -l linenum "
"linenum [-n howmany]] [-s startaddr -e endaddr] [--] mixed_mode."); "[-n howmany]] [-s startaddr -e endaddr] [--] mixed_mode."));
mixed_source_and_assembly = atoi (argv[0]); mixed_source_and_assembly = atoi (argv[0]);
if ((mixed_source_and_assembly != 0) && (mixed_source_and_assembly != 1)) if ((mixed_source_and_assembly != 0) && (mixed_source_and_assembly != 1))

View File

@ -488,8 +488,8 @@ tui_set_layout_for_display_command (const char *layout_name)
{ {
if (TUI_DATA_WIN->detail.data_display_info.regs_display_type if (TUI_DATA_WIN->detail.data_display_info.regs_display_type
!= TUI_UNDEFINED_REGS) != TUI_UNDEFINED_REGS)
dpy_type = dpy_type
TUI_DATA_WIN->detail.data_display_info.regs_display_type; = TUI_DATA_WIN->detail.data_display_info.regs_display_type;
else else
dpy_type = TUI_GENERAL_REGS; dpy_type = TUI_GENERAL_REGS;
} }

View File

@ -342,8 +342,9 @@ tui_horizontal_source_scroll (struct tui_win_info *win_info,
+ num_to_scroll; + num_to_scroll;
else else
{ {
if ((offset = win_info->detail.source_info.horizontal_offset offset = win_info->detail.source_info.horizontal_offset
- num_to_scroll) < 0) - num_to_scroll;
if (offset < 0)
offset = 0; offset = 0;
} }
win_info->detail.source_info.horizontal_offset = offset; win_info->detail.source_info.horizontal_offset = offset;