Get rid of annoying beeps on remote console
authorJames Golovich <james@gnuinter.net>
Mon, 29 Mar 2004 04:12:13 +0000 (04:12 +0000)
committerJames Golovich <james@gnuinter.net>
Mon, 29 Mar 2004 04:12:13 +0000 (04:12 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2579 65c4cc65-6c06-0410-ace0-fbb531ad65f3

asterisk.c

index 2954db0..c5c4656 100755 (executable)
@@ -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;
 }