Don't use obsolete functions which are no longer declared in the header.
This commit is contained in:
parent
a19cd81100
commit
59b96d7b4d
1 changed files with 2 additions and 2 deletions
|
@ -127,7 +127,7 @@ void
|
||||||
input_start_list(void) /* Leave the currently edited line and make space for listing */
|
input_start_list(void) /* Leave the currently edited line and make space for listing */
|
||||||
{
|
{
|
||||||
_rl_move_vert(_rl_vis_botlin);
|
_rl_move_vert(_rl_vis_botlin);
|
||||||
crlf();
|
rl_crlf();
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
@ -155,7 +155,7 @@ input_complete(int arg, int key)
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
complete_flag = 1;
|
complete_flag = 1;
|
||||||
ding();
|
rl_ding();
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue