* tui.c (strcat_to_buf): Use const char* for source item.
authorStephane Carrez <stcarrez@nerim.fr>
Sat, 24 Aug 2002 17:04:33 +0000 (17:04 +0000)
committerStephane Carrez <stcarrez@nerim.fr>
Sat, 24 Aug 2002 17:04:33 +0000 (17:04 +0000)
(tui_enable): Update the windows if there is a selected frame.
* tui.h (strcat_to_buf): Update prototype.
(strcat_to_buf_with_fmt): Remove.

gdb/tui/ChangeLog
gdb/tui/tui.c
gdb/tui/tui.h

index 32df100e77d4dbf188bd811e87bd0679b96416be..14e400e7e1c5441db0929afd9582ea7bf83a0ded 100644 (file)
@@ -1,3 +1,10 @@
+2002-08-24  Stephane Carrez  <stcarrez@nerim.fr>
+
+       * tui.c (strcat_to_buf): Use const char* for source item.
+       (tui_enable): Update the windows if there is a selected frame.
+       * tui.h (strcat_to_buf): Update prototype.
+       (strcat_to_buf_with_fmt): Remove.
+
 2002-08-24  Stephane Carrez  <stcarrez@nerim.fr>
 
        * tuiWin.c (tui_update_gdb_sizes): New function to tell gdb what
index 8ead02f5b0d09a2e6c67b3c551d5d4f6f83173af..8bf477673d3bd44f67c938ae2515ef5fc086c791 100644 (file)
@@ -261,6 +261,9 @@ tui_enable (void)
 
   tui_version = 1;
   tui_active = 1;
+  if (selected_frame)
+     tuiShowFrameInfo (selected_frame);
+
   refresh ();
   tui_update_gdb_sizes ();
 }
@@ -327,7 +330,7 @@ tuiGetLowDisassemblyAddress (CORE_ADDR low, CORE_ADDR pc)
 }
 
 void
-strcat_to_buf (char *buf, int buflen, char *itemToAdd)
+strcat_to_buf (char *buf, int buflen, const char *itemToAdd)
 {
   if (itemToAdd != (char *) NULL && buf != (char *) NULL)
     {
index d250208e5640e8277e823dcc5bc19c84113fbf1d..b2ed4aa07ee56f5a2e1536a2b16ae47b3befc2fe 100644 (file)
@@ -48,8 +48,7 @@ Opaque (*OpaqueFuncPtr) (va_list);
  */
      typedef OpaqueFuncPtr TuiOpaqueFuncPtr;
 
-extern void strcat_to_buf (char *, int, char *);
-extern void strcat_to_buf_with_fmt (char *, int, char *, ...);
+extern void strcat_to_buf (char *, int, const char *);
 
 /* Types of error returns */
      typedef enum