diff options
Diffstat (limited to 'gdb/tui')
-rw-r--r-- | gdb/tui/tui-io.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/tui/tui-io.c b/gdb/tui/tui-io.c index 01300d8..22c234a 100644 --- a/gdb/tui/tui-io.c +++ b/gdb/tui/tui-io.c @@ -44,6 +44,7 @@ #include "completer.h" #include "gdb_curses.h" #include <map> +#include "pager.h" /* This redefines CTRL if it is not already defined, so it must come after terminal state releated include files like <term.h> and @@ -903,7 +904,7 @@ tui_initialize_io (void) #endif /* Create tui output streams. */ - tui_stdout = new tui_file (stdout); + tui_stdout = new pager_file (new tui_file (stdout)); tui_stderr = new tui_file (stderr); tui_stdlog = new timestamped_file (tui_stderr); tui_out = tui_out_new (tui_stdout); |