gdb/tui: remove unnecessary wmove call from tui_status_window

I've been looking recently at when the TUI calls wnoutrefresh vs
wrefresh, and the ordering of other screen update actions relative to
these calls.

I noticed in tui_status_window::rerender() a call to wmove() that is
placed after the refresh_window() call.  This surely means that the
cursor is moved, but, this update is not sent to the screen.

But we call wmove() at the start of tui_status_window::rerender()
before anything is sent to the screen, so the final wmove() call is
pointless as far as I can tell.

I propose removing it.  This is trivial, but removing pointless work
like this slowly makes the TUI code easier to understand.

There should be no user visible changes after this commit.

Approved-By: Tom Tromey <tom@tromey.com>
1 file changed