* tui-hooks.c (tui_init_hook): Don't enable the TUI if a specific
interpreter is installed.
This commit is contained in:
parent
8308e54c58
commit
9c393d00b5
2 changed files with 9 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2002-11-21 Stephane Carrez <stcarrez@nerim.fr>
|
||||
|
||||
* tui-hooks.c (tui_init_hook): Don't enable the TUI if a specific
|
||||
interpreter is installed.
|
||||
|
||||
2002-11-18 Andrew Cagney <ac131313@redhat.com>
|
||||
|
||||
* tuiStack.c (tuiShowFrameInfo): Use get_frame_type instead of
|
||||
|
|
|
@ -419,6 +419,10 @@ tui_event_loop (void)
|
|||
static void
|
||||
tui_init_hook (char *argv0)
|
||||
{
|
||||
/* Don't enable the TUI if a specific interpreter is installed. */
|
||||
if (interpreter_p)
|
||||
return;
|
||||
|
||||
/* Install exit handler to leave the screen in a good shape. */
|
||||
atexit (tui_exit);
|
||||
|
||||
|
|
Loading…
Reference in a new issue