diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-01-21 04:16:53 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-01-21 04:16:53 +0000 |
commit | b0a30fcea7c66ee6d345a9b08b42529aaf3a2836 (patch) | |
tree | b482b8c09fb7cf5bc8c88e8577dd9506ea1a9b94 /gdb/tui | |
parent | 81f08b92d6f1fac7ffef42e5aa031cb8d70f1e06 (diff) | |
download | gdb-b0a30fcea7c66ee6d345a9b08b42529aaf3a2836.zip gdb-b0a30fcea7c66ee6d345a9b08b42529aaf3a2836.tar.gz gdb-b0a30fcea7c66ee6d345a9b08b42529aaf3a2836.tar.bz2 |
2004-01-20 Andrew Cagney <cagney@redhat.com>
* tui/tui-command.c: Update references.
* tui/tui-io.c: Update references.
* tui/tui-command.h: Update copyright.
(tui_dispatch_ctrl_char): Rename tuiDispatchCtrlChar.
Diffstat (limited to 'gdb/tui')
-rw-r--r-- | gdb/tui/tui-command.c | 7 | ||||
-rw-r--r-- | gdb/tui/tui-command.h | 26 | ||||
-rw-r--r-- | gdb/tui/tui-io.c | 2 |
3 files changed, 10 insertions, 25 deletions
diff --git a/gdb/tui/tui-command.c b/gdb/tui/tui-command.c index 551a534..4b1c0fd 100644 --- a/gdb/tui/tui-command.c +++ b/gdb/tui/tui-command.c @@ -48,12 +48,9 @@ ** PUBLIC FUNCTIONS ** ******************************************/ -/* - ** tuiDispatchCtrlChar(). - ** Dispatch the correct tui function based upon the control character. - */ +/* Dispatch the correct tui function based upon the control character. */ unsigned int -tuiDispatchCtrlChar (unsigned int ch) +tui_dispatch_ctrl_char (unsigned int ch) { TuiWinInfoPtr winInfo = tuiWinWithFocus (); WINDOW *w = cmdWin->generic.handle; diff --git a/gdb/tui/tui-command.h b/gdb/tui/tui-command.h index 7afeb1b..9653bf0 100644 --- a/gdb/tui/tui-command.h +++ b/gdb/tui/tui-command.h @@ -1,5 +1,8 @@ /* Specific command window processing. - Copyright 1998, 1999, 2000, 2001 Free Software Foundation, Inc. + + Copyright 1998, 1999, 2000, 2001, 2004 Free Software Foundation, + Inc. + Contributed by Hewlett-Packard Company. This file is part of GDB. @@ -19,24 +22,9 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#ifndef _TUI_COMMAND_H -#define _TUI_COMMAND_H -/* - ** This header file supports - */ - - -/***************************************** -** TYPE DEFINITIONS ** -******************************************/ - - - -/***************************************** -** PUBLIC FUNCTION EXTERNAL DECLS ** -******************************************/ +#ifndef TUI_COMMAND_H +#define TUI_COMMAND_H -extern unsigned int tuiDispatchCtrlChar (unsigned int); +extern unsigned int tui_dispatch_ctrl_char (unsigned int); #endif -/*_TUI_COMMAND_H*/ diff --git a/gdb/tui/tui-io.c b/gdb/tui/tui-io.c index 0cffd6e..61b1f93 100644 --- a/gdb/tui/tui-io.c +++ b/gdb/tui/tui-io.c @@ -689,7 +689,7 @@ tui_getc (FILE *fp) if (key_is_command_char (ch)) { /* Handle prev/next/up/down here */ - ch = tuiDispatchCtrlChar (ch); + ch = tui_dispatch_ctrl_char (ch); } if (ch == '\n' || ch == '\r' || ch == '\f') |