diff options
author | Tom Tromey <tom@tromey.com> | 2016-06-28 14:25:49 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2016-07-14 10:35:38 -0600 |
commit | cecc8b99060bf82632345bd1c07d50c7ae8d81ef (patch) | |
tree | 87ad730603dfc12cbed8be0a1b71b7d2913a97b4 /gdb/tui/tui-io.c | |
parent | 821fc4aeef26bc7e5d5943c2f5d009a23e16883c (diff) | |
download | binutils-cecc8b99060bf82632345bd1c07d50c7ae8d81ef.zip binutils-cecc8b99060bf82632345bd1c07d50c7ae8d81ef.tar.gz binutils-cecc8b99060bf82632345bd1c07d50c7ae8d81ef.tar.bz2 |
Use getcurx in curses code
As suggested by Pedro, this changes a few spots to use getcurx, rather
than getyx. This avoids some unused variable warnings.
2016-07-14 Tom Tromey <tom@tromey.com>
* tui/tui-winsource.c (tui_show_source_line): Use getcurx.
* tui/tui-io.c (tui_puts): Use getcurx.
(tui_redisplay_readline): Likewise.
Diffstat (limited to 'gdb/tui/tui-io.c')
-rw-r--r-- | gdb/tui/tui-io.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gdb/tui/tui-io.c b/gdb/tui/tui-io.c index ed79b44..93bed88 100644 --- a/gdb/tui/tui-io.c +++ b/gdb/tui/tui-io.c @@ -172,9 +172,9 @@ tui_puts (const char *string) /* Expand TABs, since ncurses on MS-Windows doesn't. */ if (c == '\t') { - int line, col; + int col; - getyx (w, line, col); + col = getcurx (w); do { waddch (w, ' '); @@ -198,7 +198,7 @@ tui_redisplay_readline (void) { int prev_col; int height; - int col, line; + int col; int c_pos; int c_line; int in; @@ -230,7 +230,7 @@ tui_redisplay_readline (void) for (in = 0; prompt && prompt[in]; in++) { waddch (w, prompt[in]); - getyx (w, line, col); + col = getcurx (w); if (col <= prev_col) height++; prev_col = col; @@ -256,7 +256,7 @@ tui_redisplay_readline (void) else if (c == '\t') { /* Expand TABs, since ncurses on MS-Windows doesn't. */ - getyx (w, line, col); + col = getcurx (w); do { waddch (w, ' '); @@ -269,7 +269,7 @@ tui_redisplay_readline (void) } if (c == '\n') TUI_CMD_WIN->detail.command_info.start_line = getcury (w); - getyx (w, line, col); + col = getcurx (w); if (col < prev_col) height++; prev_col = col; |