mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-30 08:59:56 +02:00
commit bash-20200403 snapshot
This commit is contained in:
@@ -739,6 +739,30 @@ rl_ding (void)
|
||||
return (-1);
|
||||
}
|
||||
|
||||
/* **************************************************************** */
|
||||
/* */
|
||||
/* Entering and leaving terminal standout mode */
|
||||
/* */
|
||||
/* **************************************************************** */
|
||||
|
||||
void
|
||||
_rl_standout_on (void)
|
||||
{
|
||||
#ifndef __MSDOS__
|
||||
if (_rl_term_so && _rl_term_se)
|
||||
tputs (_rl_term_so, 1, _rl_output_character_function);
|
||||
#endif
|
||||
}
|
||||
|
||||
void
|
||||
_rl_standout_off (void)
|
||||
{
|
||||
#ifndef __MSDOS__
|
||||
if (_rl_term_so && _rl_term_se)
|
||||
tputs (_rl_term_se, 1, _rl_output_character_function);
|
||||
#endif
|
||||
}
|
||||
|
||||
/* **************************************************************** */
|
||||
/* */
|
||||
/* Controlling the Meta Key and Keypad */
|
||||
|
||||
Reference in New Issue
Block a user