From 297d1607779327c07b70f8b008626a8b5e3af144 Mon Sep 17 00:00:00 2001 From: Stephane Carrez Date: Sat, 24 Aug 2002 17:04:33 +0000 Subject: * 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. --- gdb/tui/tui.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'gdb/tui/tui.c') diff --git a/gdb/tui/tui.c b/gdb/tui/tui.c index 8ead02f..8bf4776 100644 --- a/gdb/tui/tui.c +++ b/gdb/tui/tui.c @@ -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) { -- cgit v1.1