diff options
author | Andrew Stubbs <andrew.stubbs@st.com> | 2005-11-07 12:46:38 +0000 |
---|---|---|
committer | Andrew Stubbs <andrew.stubbs@st.com> | 2005-11-07 12:46:38 +0000 |
commit | cc4349edfd544f63fe931d25f50f79bf1a5747f4 (patch) | |
tree | 8fb5bddca9359c9d7a072f4fb36483be2e88680e /gdb/tui | |
parent | 5ca0ee011b4dec43633a4e174d3d0ac85add12a4 (diff) | |
download | gdb-cc4349edfd544f63fe931d25f50f79bf1a5747f4.zip gdb-cc4349edfd544f63fe931d25f50f79bf1a5747f4.tar.gz gdb-cc4349edfd544f63fe931d25f50f79bf1a5747f4.tar.bz2 |
2005-11-07 Andrew Stubbs <andrew.stubbs@st.com>
* main.c (main): Use INTERP_TUI instead of "tui".
Set interpreter to INTERP_INSIGHT when '-w' given.
* interps.h (INTERP_INSIGHT): New define.
* tui/tui-interp.c (_initialize_tui_interp): Use INTERP_TUI instead
of "tui".
Diffstat (limited to 'gdb/tui')
-rw-r--r-- | gdb/tui/tui-interp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/tui/tui-interp.c b/gdb/tui/tui-interp.c index 17dda51..aeb2047 100644 --- a/gdb/tui/tui-interp.c +++ b/gdb/tui/tui-interp.c @@ -199,13 +199,13 @@ _initialize_tui_interp (void) /* Create a default uiout builder for the TUI. */ tui_out = tui_out_new (gdb_stdout); - interp_add (interp_new ("tui", NULL, tui_out, &procs)); - if (interpreter_p && strcmp (interpreter_p, "tui") == 0) + interp_add (interp_new (INTERP_TUI, NULL, tui_out, &procs)); + if (interpreter_p && strcmp (interpreter_p, INTERP_TUI) == 0) tui_start_enabled = 1; if (interpreter_p && strcmp (interpreter_p, INTERP_CONSOLE) == 0) { xfree (interpreter_p); - interpreter_p = xstrdup ("tui"); + interpreter_p = xstrdup (INTERP_TUI); } } |