2004-01-20 Andrew Cagney <cagney@redhat.com>
authorAndrew Cagney <cagney@redhat.com>
Wed, 21 Jan 2004 04:16:53 +0000 (04:16 +0000)
committerAndrew Cagney <cagney@redhat.com>
Wed, 21 Jan 2004 04:16:53 +0000 (04:16 +0000)
* tui/tui-command.c: Update references.
* tui/tui-io.c: Update references.
* tui/tui-command.h: Update copyright.
(tui_dispatch_ctrl_char): Rename tuiDispatchCtrlChar.

gdb/ChangeLog
gdb/tui/tui-command.c
gdb/tui/tui-command.h
gdb/tui/tui-io.c

index cc67ce00dab9bbcae96cfe126c3e5d36275d20a9..b885f07f7c99c0a961b23ff50e6899576a9fce6d 100644 (file)
@@ -1,12 +1,15 @@
 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.
+
        * source.c (ambiguous_line_spec): Delete never-defined function.
        * remote-rdi.c (arm_rdi_mourn, arm_rdi_send): Ditto.
        * gdbtypes.c (add_name, add_mangled_type): Ditto.
        * cli/cli-cmds.c (validate_comname): Ditto.
 
-2004-01-20  Andrew Cagney  <cagney@redhat.com>
-
        * tui/tui-disasm.h: Update copyright.  Include "tui.h" and
        "tui-data.h".
        (tui_set_disassem_content): Rename tuiSetDisassemContent.
index 551a5344417569d8a6e5398de992f1ea87c56e37..4b1c0fd8e0d56191fb15cf3c00e7a58f24d0c4c4 100644 (file)
 ** 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;
index 7afeb1bb39599b9a9129ed684d0ba04629165b7c..9653bf07ee59d246e8b9a45a964f8691831d7b53 100644 (file)
@@ -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.
    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*/
index 0cffd6eea9f618a2e4fb4ac02707294638085160..61b1f93dcbda65b2720d54d9a22576df3681e018 100644 (file)
@@ -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')
This page took 0.027108 seconds and 4 git commands to generate.