mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-08-10 04:00:34 +02:00
commit bash-20170203 snapshot
This commit is contained in:
@@ -598,6 +598,24 @@ rl_clear_screen (count, key)
|
||||
return 0;
|
||||
}
|
||||
|
||||
int
|
||||
rl_previous_screen_line (count, key)
|
||||
{
|
||||
int c;
|
||||
|
||||
c = _rl_term_autowrap ? _rl_screenwidth : (_rl_screenwidth + 1);
|
||||
return (rl_backward_char (c, key));
|
||||
}
|
||||
|
||||
int
|
||||
rl_next_screen_line (count, key)
|
||||
{
|
||||
int c;
|
||||
|
||||
c = _rl_term_autowrap ? _rl_screenwidth : (_rl_screenwidth + 1);
|
||||
return (rl_forward_char (c, key));
|
||||
}
|
||||
|
||||
int
|
||||
rl_skip_csi_sequence (count, key)
|
||||
int count, key;
|
||||
|
||||
Reference in New Issue
Block a user