Get rid of annoying beeps on remote console

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2579 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
James Golovich
2004-03-29 04:12:13 +00:00
parent dbbf64fdd4
commit 2c0d0d836c

View File

@@ -1172,6 +1172,8 @@ static int ast_el_initialize(void)
el_set(el, EL_BIND, "^I", "ed-complete", NULL);
/* Bind ? to command completion */
el_set(el, EL_BIND, "?", "ed-complete", NULL);
/* Bind ^D to redisplay */
el_set(el, EL_BIND, "^D", "ed-redisplay", NULL);
return 0;
}