diff options
author | Stephane Carrez <stcarrez@nerim.fr> | 2001-07-23 21:16:20 +0000 |
---|---|---|
committer | Stephane Carrez <stcarrez@nerim.fr> | 2001-07-23 21:16:20 +0000 |
commit | d75e970c9d3cfe3e20267cd336762a562f31f623 (patch) | |
tree | b90d7fe2ab6f6439f0246ef70657945aafc91d77 /gdb/tui/tuiData.h | |
parent | c6f60bcd2c458714bd21da267719d55ba7e10736 (diff) | |
download | gdb-d75e970c9d3cfe3e20267cd336762a562f31f623.zip gdb-d75e970c9d3cfe3e20267cd336762a562f31f623.tar.gz gdb-d75e970c9d3cfe3e20267cd336762a562f31f623.tar.bz2 |
* tuiIO.c (tui_cont_sig): Update cursor position on the screen to
leave it in the command window.
(tui_redisplay_readline): Save cursor position to restore the
cursor after we go back from background.
* tuiData.h (TuiCommandInfo): Add start_line member.
Diffstat (limited to 'gdb/tui/tuiData.h')
-rw-r--r-- | gdb/tui/tuiData.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/tui/tuiData.h b/gdb/tui/tuiData.h index 6fc4ca3..9edf000 100644 --- a/gdb/tui/tuiData.h +++ b/gdb/tui/tuiData.h @@ -252,6 +252,7 @@ typedef struct _TuiCommandInfo { int curLine; /* The current line position */ int curch; /* The current cursor position */ + int start_line; } TuiCommandInfo, *TuiCommandInfoPtr; |