diff options
author | Andrew Cagney <cagney@redhat.com> | 2001-07-06 03:53:11 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2001-07-06 03:53:11 +0000 |
commit | a1226bf96dbb02eb2ef465363ee00cd34fed8120 (patch) | |
tree | 73a08e7502fb48ebc5abea390346d440dbd17d79 /gdb/cli-out.c | |
parent | 51d909187856db97afa04804d794ecbafcebc9f5 (diff) | |
download | gdb-a1226bf96dbb02eb2ef465363ee00cd34fed8120.tar.gz |
Replace:
if (interpreter_p && strncmp (interpreter_p, "mi", 2) == 0)
with:
if (ui_out_is_mi_like_p (uiout))
Diffstat (limited to 'gdb/cli-out.c')
-rw-r--r-- | gdb/cli-out.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/cli-out.c b/gdb/cli-out.c index 42adc798b3d..9bcfa4684a1 100644 --- a/gdb/cli-out.c +++ b/gdb/cli-out.c @@ -89,7 +89,8 @@ static struct ui_out_impl cli_ui_out_impl = cli_text, cli_message, cli_wrap_hint, - cli_flush + cli_flush, + 0, /* Does not need MI hacks (i.e. needs CLI hacks). */ }; /* Prototypes for local functions */ |