Remove a use of pagination_enabled
authorTom Tromey <tom@tromey.com>
Sat, 28 Jan 2023 15:23:52 +0000 (08:23 -0700)
committerTom Tromey <tom@tromey.com>
Tue, 14 Feb 2023 20:54:44 +0000 (13:54 -0700)
I noticed that the TUI temporarily sets pagination_enabled and
gdb_stdout in one spot.  However, I don't believe these settings are
necessary here, as a ui_file is passed to
gdbarch_print_registers_info.  This patch removes these settings.

gdb/tui/tui-regs.c

index 3e794aed224b19714df881d4b7fa6e6f79988d07..50a238401df388974c999a02c781e59e2e3d7d5d 100644 (file)
@@ -91,12 +91,6 @@ tui_register_format (frame_info_ptr frame, int regnum)
 
   /* Expand tabs into spaces, since ncurses on MS-Windows doesn't.  */
   tab_expansion_file stream;
-
-  scoped_restore save_pagination
-    = make_scoped_restore (&pagination_enabled, false);
-  scoped_restore save_stdout
-    = make_scoped_restore (&gdb_stdout, &stream);
-
   gdbarch_print_registers_info (gdbarch, &stream, frame, regnum, 1);
 
   /* Remove the possible \n.  */