.
This commit is contained in:
parent
80b1edadc2
commit
02a50969f1
41
.gdb_history
41
.gdb_history
@ -88,3 +88,44 @@ c
|
||||
c
|
||||
where
|
||||
frame 1
|
||||
where
|
||||
b handle_input
|
||||
c
|
||||
n
|
||||
p r
|
||||
n
|
||||
s
|
||||
n
|
||||
s
|
||||
p next_page_cursor
|
||||
p page_cursor
|
||||
p do_turn
|
||||
c
|
||||
d 1
|
||||
c
|
||||
where
|
||||
wa page_cursor
|
||||
wa page_cursor
|
||||
c
|
||||
l
|
||||
where
|
||||
l
|
||||
l
|
||||
where
|
||||
where
|
||||
l
|
||||
where
|
||||
p curdispline
|
||||
c
|
||||
p curdispline
|
||||
c
|
||||
p curdispline
|
||||
c
|
||||
p curdispline
|
||||
c
|
||||
c
|
||||
p curdispline
|
||||
p page_cursor
|
||||
c
|
||||
p page_cursor
|
||||
c
|
||||
|
@ -265,9 +265,9 @@ static inline void display_command_field(){
|
||||
waddstr(winput, rl_line_buffer);
|
||||
}
|
||||
|
||||
static inline void display_results(){
|
||||
static long page_cursor = 0; /* signals where to output from */
|
||||
static long next_page_cursor = 0;
|
||||
static inline void display_results(){
|
||||
int screenline; /* screen line number */
|
||||
int srctxtw; /* source line display width */
|
||||
int i;
|
||||
@ -527,7 +527,7 @@ display(void)
|
||||
}
|
||||
if(window_change & CH_RESULT){
|
||||
werase(wresult);
|
||||
display_results(do_turn);
|
||||
display_results();
|
||||
}
|
||||
if(window_change & CH_MODE){
|
||||
werase(wmode);
|
||||
|
Loading…
Reference in New Issue
Block a user