diff options
author | Michael Snyder <msnyder@vmware.com> | 2007-08-14 21:20:09 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2007-08-14 21:20:09 +0000 |
commit | 1cc6d956c14542a182c11d5a5ee91d5a00a9af4a (patch) | |
tree | 5fd77f93eacf590243fcd88181f6df0508ca5540 /gdb/tui/tui-wingeneral.c | |
parent | 5b6fe301a1769b1a5a062d8fbf17c89556c478e8 (diff) | |
download | gdb-1cc6d956c14542a182c11d5a5ee91d5a00a9af4a.zip gdb-1cc6d956c14542a182c11d5a5ee91d5a00a9af4a.tar.gz gdb-1cc6d956c14542a182c11d5a5ee91d5a00a9af4a.tar.bz2 |
2007-08-14 Michael Snyder <msnyder@access-company.com>
* tui-command.c, tui-data.c, tui-data.h, tui-disasm.c, tui-file.c,
tui-hooks.c, tui-interp.c, tui-io.c, tui-layout.c, tui-out.c,
tui-regs.c, tui-regs.h, tui-source.c, tui-stack.c, tui-win.c,
tui-windata.c, tui-wingeneral.c, tui-winsource.c, tui-winsource.h,
tui.c, tui.h: Comment reformatting to coding standard (capitals,
spaces after periods, etc).
Diffstat (limited to 'gdb/tui/tui-wingeneral.c')
-rw-r--r-- | gdb/tui/tui-wingeneral.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gdb/tui/tui-wingeneral.c b/gdb/tui/tui-wingeneral.c index c0de03f..0249d8a 100644 --- a/gdb/tui/tui-wingeneral.c +++ b/gdb/tui/tui-wingeneral.c @@ -34,7 +34,7 @@ ** PUBLIC FUNCTIONS ***********************/ -/* Refresh the window. */ +/* Refresh the window. */ void tui_refresh_win (struct tui_gen_win_info *win_info) { @@ -55,7 +55,7 @@ tui_refresh_win (struct tui_gen_win_info *win_info) } else if (win_info->type == CMD_WIN) { - /* Do nothing */ + /* Do nothing. */ } else { @@ -67,7 +67,7 @@ tui_refresh_win (struct tui_gen_win_info *win_info) } -/* Function to delete the curses window, checking for NULL. */ +/* Function to delete the curses window, checking for NULL. */ void tui_delete_win (WINDOW *window) { @@ -175,7 +175,7 @@ tui_make_window (struct tui_gen_win_info *win_info, int box_it) static void make_visible (struct tui_gen_win_info *win_info, int visible) { - /* Don't tear down/recreate command window */ + /* Don't tear down/recreate command window. */ if (win_info->type == CMD_WIN) return; @@ -213,7 +213,8 @@ tui_make_invisible (struct tui_gen_win_info *win_info) } -/* Makes all windows invisible (except the command and locator windows). */ +/* Makes all windows invisible (except the command and locator + windows). */ static void make_all_visible (int visible) { |