From: Eli Zaretskii Date: Wed, 21 Jan 2004 18:46:23 +0000 (+0000) Subject: * utils.c (init_page_info): Move declarations of `rows' and X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ec1459659670db3b33965426bdadf471281f4ed7;p=binutils-gdb.git * utils.c (init_page_info): Move declarations of `rows' and `cols' before the __GO32__-specific code. Move the closing brace outside the #ifdef __GO32__..#endif block. [__GO32__]: Use `rows' and `cols' to avoid compiler warnings. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 434932cd4a2..f5b8fc527e9 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,10 @@ +2004-01-21 Eli Zaretskii + + * utils.c (init_page_info): Move declarations of `rows' and + `cols' before the __GO32__-specific code. Move the closing brace + outside the #ifdef __GO32__..#endif block. + [__GO32__]: Use `rows' and `cols' to avoid compiler warnings. + 2004-01-21 Paul Brook * infrun.c (handle_inferior_event): Check stop_stack_dummy if handling diff --git a/gdb/utils.c b/gdb/utils.c index 444d61fdd4c..556486b635e 100644 --- a/gdb/utils.c +++ b/gdb/utils.c @@ -1582,12 +1582,14 @@ init_page_info (void) if (!tui_get_command_dimension (&chars_per_line, &lines_per_page)) #endif { -#if defined(__GO32__) - lines_per_page = ScreenRows (); - chars_per_line = ScreenCols (); -#else int rows, cols; +#if defined(__GO32__) + rows = ScreenRows (); + cols = ScreenCols (); + lines_per_page = rows; + chars_per_line = cols; +#else /* Make sure Readline has initialized its terminal settings. */ rl_reset_terminal (NULL); @@ -1613,8 +1615,8 @@ init_page_info (void) /* If the output is not a terminal, don't paginate it. */ if (!ui_file_isatty (gdb_stdout)) lines_per_page = UINT_MAX; - } #endif + } set_screen_size (); set_width ();